
/* =============================================
   PROMOTIONS SECTION 
   ============================================= */
.promotions-section {
  background: linear-gradient(
    -86.7deg,
    rgba(140, 179, 241, 0.13) 45%,
    rgba(123, 166, 232, 0.19) 95%
  );
  padding-top: 100px;
  padding-bottom: 100px;
}

.promotions-wrapper {
  max-width: 1450px;
  margin: 0 auto;
}

@media (max-width: 1450px) {
  .promotions-wrapper {
    padding: 0 var(--sp-16);
  }
}

.promotions__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 24px;
  flex-wrap: wrap;
}
.promotions__title {
  font-family: Inter;
  font-size: 46px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: normal;
}
.promotions__title span {
  color: var(--color-blue);
}
.promotions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  height: 50px;
  min-width: 198px;
  text-decoration: none;
  transition: background 0.2s;
  font-family: Inter;
}
.promotions__btn:hover,
.promotions__btn:focus {
  background: #2e5caa;
  color: var(--color-white);
}
.promotions__grid {
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .promotions__grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* Individual promotion card */
.promotions__card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  display: flex;
  min-height: 220px;
  position: relative;
}
.promotions__card-img {
  flex: 0 0 56%;
  position: relative;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: #5591ee;
}
.promotions__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promotions__card-body {
  flex: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.promotions__card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promotions__card-title a {
  color: inherit;
  text-decoration: none;
}
.promotions__card-title a:hover {
  color: var(--color-blue);
}
.promotions__card-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light, #6b7280);
  margin: 6px 0 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promotions__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.promotions__card-link svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-blue);
  flex-shrink: 0;
}
.promotions__card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.promotions__card-bar {
  background: rgba(54, 191, 150, 0.2);
  border-radius: 8px;
  height: 8px;
  width: 74px;
  overflow: hidden;
  flex-shrink: 0;
}
.promotions__card-bar-fill {
  background: #36bf96;
  height: 100%;
  border-radius: 8px;
  width: 64%;
}
.promotions__card-date {
  font-size: 14px;
  font-weight: 600;
  color: #343e4c;
  white-space: nowrap;
}
.promotions__card-date-short { display: none; }
@media (max-width: 480px) {
  .promotions__card-date { font-size: 12px; }
  .promotions__card-date-full  { display: none; }
  .promotions__card-date-short { display: inline; }
}

@media (max-width: 1200px) {
  .promotions__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .promotions__title {
    font-size: 28px;
  }
  .promotions__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
  }
  .promotions__btn {
    width: 100%;
    min-width: 0;
    height: 48px;
  }
  .promotions__grid { gap: 14px; }
  .promotions__card {
    flex-direction: column;
    min-height: auto;
  }
  .promotions__card-img {
    flex: none;
    height: 160px;
    border-radius: 8px 8px 0 0;
  }
  .promotions__card-body { padding: 16px; gap: 10px; }
  .promotions__card-title { font-size: 18px; }
}

