.key-discussion-section {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 5% 10%,
      rgba(200, 16, 46, 0.08),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 90%,
      rgba(246, 184, 23, 0.1),
      transparent 24%
    ),
    linear-gradient(135deg, #fffefb 0%, #f8f4eb 100%);
}

.key-discussion-section::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 280px;
  height: 280px;
  border: 45px solid rgba(200, 16, 46, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.key-discussion-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(246, 184, 23, 0.12);
  pointer-events: none;
}

.key-discussion-section .container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
}

.key-discussion-header {
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #c8102e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 35px;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, #c8102e, #f6b817);
}

.section-eyebrow::after {
  background: linear-gradient(90deg, #f6b817, #c8102e);
}

.section-title {
  margin: 0 0 20px;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.section-title span {
  color: #c8102e;
}

.section-description {
  max-width: 760px;
  margin: 0 auto;
  color: #000000;
  font-size: 17px;
  line-height: 1.75;
}

.discussion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.discussion-card {
  position: relative;
  min-height: 300px;
  padding: 26px 25px 25px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 42px rgba(67, 28, 33, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.discussion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #c8102e, #f6b817);
  transition: transform 0.35s ease;
}

.discussion-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.045);
  transition:
    width 0.35s ease,
    height 0.35s ease;
}

.discussion-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 16, 46, 0.22);
  box-shadow: 0 24px 55px rgba(67, 28, 33, 0.13);
}

.discussion-card:hover::before {
  transform: scaleX(1);
}

.discussion-card:hover::after {
  width: 170px;
  height: 170px;
}

.discussion-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(200, 16, 46, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.discussion-icon {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: #c8102e;
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.12),
    rgba(246, 184, 23, 0.16)
  );
}

.discussion-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.discussion-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.discussion-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.75;
}

.discussion-closing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 900px;
  margin: 55px auto 0;
  text-align: center;
}

.discussion-closing p {
  max-width: 680px;
  margin: 0;
  color: #000000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
}

.closing-line {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 16, 46, 0.55)
  );
}

.closing-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(200, 16, 46, 0.55),
    transparent
  );
}

@media (max-width: 991px) {
  .key-discussion-section {
    padding: 75px 0;
  }

  .discussion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .key-discussion-section {
    padding: 60px 0;
  }

  .key-discussion-section .container {
    width: min(calc(100% - 30px), 1180px);
  }

  .key-discussion-header {
    margin-bottom: 38px;
  }

  .section-eyebrow {
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1.3px;
  }

  .section-eyebrow::before,
  .section-eyebrow::after {
    width: 24px;
  }

  .section-title {
    font-size: 38px;
    letter-spacing: -0.8px;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .discussion-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .discussion-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .discussion-card h3 {
    font-size: 22px;
  }

  .discussion-closing {
    gap: 12px;
    margin-top: 40px;
  }

  .discussion-closing p {
    font-size: 18px;
  }

  .closing-line {
    display: none;
  }
}