.subpage-cotes {
  padding: 0 0 64px;
}

.sub-cotes-hero {
  background: linear-gradient(135deg, var(--nav-bg) 0%, #5C2A2A 100%);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.sub-cotes-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(255, 77, 77, 0.25) 0%, transparent 70%);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  pointer-events: none;
}

.sub-cotes-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sub-cotes-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 12px;
}

.sub-cotes-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.sub-cotes-hero-img {
  border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%;
  overflow: hidden;
  max-width: 280px;
  max-height: 220px;
}

.sub-cotes-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 220px;
}

.sub-cotes-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}

.sub-cotes-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.sub-cotes-sidebar h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
}

.sub-cotes-sidebar ul {
  list-style: none;
}

.sub-cotes-sidebar li {
  margin-bottom: 8px;
}

.sub-cotes-sidebar a {
  font-size: 0.88rem;
  color: var(--muted);
}

.sub-cotes-main h2 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 32px 0 14px;
  font-weight: 700;
}

.sub-cotes-main h2:first-child {
  margin-top: 0;
}

.sub-cotes-main p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.sub-cotes-main ul {
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.sub-cotes-main li {
  margin-bottom: 8px;
}

.sub-cotes-quote {
  background: rgba(255, 179, 179, 0.3);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}

@media (max-width: 768px) {
  .sub-cotes-hero-inner,
  .sub-cotes-body {
    grid-template-columns: 1fr;
  }

  .sub-cotes-sidebar {
    position: static;
  }

  .sub-cotes-hero-img {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .sub-cotes-hero {
    padding: 32px 16px;
    overflow: hidden;
  }

  .sub-cotes-hero-img {
    max-width: 100%;
    max-height: 180px;
  }

  .sub-cotes-hero-img img {
    max-height: 180px;
  }
}
