* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5 !important;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1312px;
  box-sizing: border-box;
}
.section-header {
  border-radius: 20px;
  padding: 40px;
  background: #fff;
}
.promotions-section {
  padding: 24px 0;
}

.main-container {
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: #464646;
}

.section-description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #464646;
  margin-top: 40px;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.promotion-card {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
}

.card-image {
  position: relative;
  width: 200px;
  height: 259px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 20px 0 0 20px;
  min-width: 200px;
  min-height: 100%;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promotion-card:hover .card-img {
  transform: scale(1.05);
}

.date-badge {
  position: absolute;
  top: 25px;
  left: 13px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  border-radius: 20px;
  padding: 6px 15px;
  width: 175px;
  height: 34px;
  background: #8a0009;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  text-align: center;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.card-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #464646;
}

.card-description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #464646;
  margin-top: 24px;

  display: -webkit-box;
  -webkit-line-clamp: 4; /* количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.details-btn {
  border: 1px solid rgba(70, 70, 70, 0.6);
  border-radius: 8px;
  padding: 12px 20px;
  width: 193px;
  height: 44px;
  margin-top: 15px;
  background: #fff;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #464646;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #f5f5f5;
  border-color: rgba(70, 70, 70, 0.8);
  color: #333;
}

.more-section {
  text-align: center;
  margin-top: 0;
}

.more-btn {
  background-color: white;
  color: #555;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
  padding: 6px 30px;
  height: 35px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #464646;
  border: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}

.more-btn:hover {
  background-color: #f8f9fa;
  border-color: #3498db;
  color: #3498db;
  transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .container {
    padding: 20px 12px;
  }

  .section-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #464646;
  }
  .section-header {
    padding: 20px 12px 30px;
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .section-description {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    color: #464646;
    margin-top: 24px;
    margin-bottom: 0px;
  }

  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .promotion-card {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .card-image {
    width: 100%;
    height: 200px;
    max-height: 200px;
    border-radius: 12px;
    margin-bottom: 0;
    min-height: auto;
    border-radius: 20px 20px 0 0;
  }

  .card-content {
    padding: 0;
    margin-left: 0;
    padding: 20px;
  }

  .card-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #464646;
  }

  .card-description {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    color: #464646;
    margin-top: 20px;
  }
  .date-badge {
    border-radius: 20px;
    padding: 6px 15px;
    width: 175px;
    height: 34px;
    right: 10px;
    left: initial;
    top: 10px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
  }

  button.details-btn {
    border: 1px solid rgba(70, 70, 70, 0.6);
    border-radius: 8px;
    padding: 12px 20px;
    height: 44px;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #464646;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .card-content {
    padding: 15px;
  }

  .details-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .more-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
