:root {
  --brand: #b23a58;
  --brand-dark: #93304a;
  --brand-light: #f7e9ee;
  --brand-rgb: 178, 58, 88;
  --surface: #ffffff;
  --surface-muted: #f7f5f6;
  --line: #ece7e9;
  --bs-link-color: var(--brand);
  --bs-link-color-rgb: var(--brand-rgb);
  --bs-link-hover-color: var(--brand-dark); }

body {
  background-color: var(--surface-muted);
  color: #2b2b2f;
  -webkit-font-smoothing: antialiased; }

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
  --bs-btn-disabled-bg: var(--brand);
  --bs-btn-disabled-border-color: var(--brand); }

.btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-active-bg: var(--brand);
  --bs-btn-active-border-color: var(--brand); }

.badge.bg-primary {
  background-color: var(--brand) !important; }

.site-navbar {
  -webkit-backdrop-filter: saturate(180%) blur(8px);
          backdrop-filter: saturate(180%) blur(8px);
  background-color: rgba(255, 255, 255, 0.9) !important; }
  .site-navbar .navbar-logo {
    height: 2.25rem;
    width: auto; }
  .site-navbar .nav-link {
    font-weight: 500;
    color: #55505a;
    -webkit-transition: color 0.15s ease;
    transition: color 0.15s ease; }
    .site-navbar .nav-link:hover, .site-navbar .nav-link:focus {
      color: var(--brand); }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(max(46vh, 20rem));
  background-image: url("/images/catch-6297119d.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.55)), to(rgba(255, 255, 255, 0.78)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.78) 100%); }

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem; }

.hero-logo {
  max-height: 6rem;
  max-width: 80vw;
  width: auto;
  -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.15)); }

.hero-lead {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  color: #3a343c;
  letter-spacing: 0.02em; }

.section-heading {
  margin-bottom: 1.5rem; }

.section-heading-title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center; }
  .section-heading-title i {
    color: var(--brand); }

.section-heading-sub {
  font-size: 0.9rem;
  margin-bottom: 0; }

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--line); }
  .section-title i {
    color: var(--brand); }

.card-media {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  background-color: var(--surface);
  -webkit-transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease; }
  .card-media .card-media-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--surface-muted); }
    .card-media .card-media-img img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -webkit-transition: -webkit-transform 0.35s ease;
      transition: -webkit-transform 0.35s ease;
      transition: transform 0.35s ease;
      transition: transform 0.35s ease, -webkit-transform 0.35s ease; }
  .card-media .card-title {
    font-weight: 700;
    line-height: 1.35; }
  .card-media .card-media-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand); }
  .card-media:hover, .card-media:focus-within {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 0.9rem 1.8rem rgba(var(--brand-rgb), 0.14);
            box-shadow: 0 0.9rem 1.8rem rgba(var(--brand-rgb), 0.14); }
    .card-media:hover .card-media-img img, .card-media:focus-within .card-media-img img {
      -webkit-transform: scale(1.05);
              transform: scale(1.05); }
    .card-media:hover .card-media-cta, .card-media:focus-within .card-media-cta {
      color: var(--brand-dark); }

.tag-link {
  padding: 0.4em 0.75em;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  -webkit-transition: -webkit-filter 0.15s ease, -webkit-transform 0.15s ease;
  transition: -webkit-filter 0.15s ease, -webkit-transform 0.15s ease;
  transition: filter 0.15s ease, transform 0.15s ease;
  transition: filter 0.15s ease, transform 0.15s ease, -webkit-filter 0.15s ease, -webkit-transform 0.15s ease; }
  .tag-link:hover {
    -webkit-filter: brightness(0.92);
            filter: brightness(0.92);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px); }

.detail-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem; }

.detail-title {
  font-weight: 700;
  letter-spacing: 0.01em; }

.detail-subtitle {
  font-size: 1.05rem;
  margin-bottom: 0.75rem; }

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem; }

.detail-figure {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  -webkit-box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08); }
  .detail-figure img {
    width: 100%;
    display: block; }

.detail-prose {
  line-height: 1.9;
  color: #45414a; }

.detail-list {
  line-height: 1.9;
  color: #45414a;
  padding-left: 1.2rem; }

.detail-meta {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem; }
  .detail-meta dt {
    font-weight: 600;
    color: #6b656f; }
  .detail-meta dd {
    margin-bottom: 0.5rem; }
  .detail-meta dd:last-child {
    margin-bottom: 0; }

.detail-video {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  -webkit-box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
  max-width: 640px; }

.link-btn {
  padding: 0.5rem 0.75rem; }
  .link-btn img {
    height: 1.75rem;
    width: auto; }

.creator-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle; }
  .creator-link img {
    height: 1.1em;
    width: auto;
    border-radius: 3px; }

.info-card {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  background-color: var(--surface); }
  .info-card th {
    width: 40%;
    color: #6b656f;
    font-weight: 600;
    background-color: var(--surface-muted); }

.guideline-card {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  border-left-width: 4px; }
  .guideline-card.guideline-allow {
    border-left-color: var(--bs-success); }
  .guideline-card.guideline-deny {
    border-left-color: var(--bs-danger); }

.site-footer {
  background-color: var(--surface); }
  .site-footer .footer-logo {
    height: 2.5rem;
    width: auto; }
  .site-footer .footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a838f;
    margin-bottom: 0.75rem; }
  .site-footer .footer-links li {
    margin-bottom: 0.5rem; }
  .site-footer .footer-links a {
    color: #55505a;
    text-decoration: none;
    -webkit-transition: color 0.15s ease;
    transition: color 0.15s ease; }
    .site-footer .footer-links a:hover {
      color: var(--brand); }
