/* ===============================
   PREMIUM BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f3f3f3;
  font-family: 'Inter', sans-serif;
  color: #111;
}

/* ===============================
   CONTAINER
================================ */
.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 100px;
  text-align: center;
}

/* ===============================
   HEADER
================================ */
.publisher-top {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #111;
}

.publisher-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.headline span {
  color: #e3a42b;
}

.subheadline {
  font-size: 20px;
  color: #444;
  margin-bottom: 70px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.paper-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}

/* ===============================
   CARD
================================ */
.paper-card {
  text-align: center;
}

.paper-image-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.06),
    0 6px 12px rgba(0,0,0,0.04);
  transition: transform .3s ease, box-shadow .3s ease;
}

.paper-image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.08),
    0 12px 20px rgba(0,0,0,0.06);
}

.paper-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.paper-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
}

.read-link {
  font-size: 18px;
  font-weight: 600;
  color: #2f66d0;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color .3s ease;
}

.read-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #2f66d0;
  transition: transform .3s ease;
}

.read-link:hover {
  color: #1d4fb8;
}

.read-link:hover::after {
  transform: scaleX(1.05);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .headline {
    font-size: 32px;
  }

  .subheadline {
    font-size: 17px;
    margin-bottom: 50px;
  }

  /* KEEP TWO COLUMNS */
  .paper-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .paper-image-wrapper {
    padding: 14px;
  }

  .paper-title {
    font-size: 18px;
    margin-top: 18px;
  }

  .read-link {
    font-size: 15px;
  }
}


/* ===============================
   TOP CREST LOGO
================================ */
.publisher-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.publisher-logo img {
  width: 260px;              /* Proper presence */
  max-width: 80%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.12));
}

/* Mobile refinement */
@media (max-width: 768px) {
  .publisher-logo img {
    width: 200px;            /* Still strong on mobile */
  }
}


/* ===============================
   CTA SECTION
================================ */
.cta-section {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 90px 40px;
  background: #e9e9e9;
  border-radius: 40px;
  text-align: center;
}

.cta-section h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.cta-email {
  font-size: 36px;
  color: #777;
  margin-bottom: 60px;
}

.cta-divider {
  height: 1px;
  background: #d0d0d0;
  margin: 50px auto 60px;
  max-width: 90%;
}

/* NAV LINKS */
.cta-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 70px;
}

.cta-nav a {
  text-decoration: none;
  color: #111;
  position: relative;
}

.cta-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #a5c98d;
}

/* COPYRIGHT BOX */
.cta-copyright {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border: 2px solid #111;
  border-radius: 40px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 60px;
}

.cta-logo-box {
  background: #111;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo-box img {
  width: 70px;
  height: auto;
}

.cta-copy-text {
  padding: 30px 40px;
  text-align: left;
  flex: 1;
}

.cta-copy-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-copy-text p {
  font-size: 20px;
  color: #444;
}

/* SOCIAL BUTTONS */
.cta-social {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.cta-social a {
  padding: 18px 40px;
  border: 2px solid #111;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  transition: all .3s ease;
}

.cta-social a:hover {
  background: #111;
  color: #fff;
}

/* ===============================
   CTA SECTION – REFINED NEWSROOM
================================ */
.cta-section {
  max-width: 1000px;
  margin: 40px auto 60px;  /* reduced top & bottom gap */
  padding: 60px 40px;      /* tighter internal spacing */
  background: #efefef;
  border-radius: 28px;
  text-align: center;
}

/* Headline */
.cta-section h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

/* Email */
.cta-email {
  font-size: 20px;
  color: #666;
  margin-bottom: 45px;
}

/* Divider */
.cta-divider {
  height: 1px;
  background: #d9d9d9;
  margin: 40px auto 50px;
  max-width: 85%;
}

/* NAV LINKS */
.cta-nav {
  display: flex;
  justify-content: center;
  gap: 45px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 60px;
}

.cta-nav a {
  text-decoration: none;
  color: #111;
  position: relative;
  padding-bottom: 6px;
}

.cta-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #9dbf8a;
}

/* COPYRIGHT PANEL */
.cta-copyright {
  border: 1.5px solid #111;
  border-radius: 28px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto 50px;
}

.cta-logo-box {
  background: #0f0f0f;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo-box img {
  width: 90px;
  opacity: 0.9;
}

.cta-copy-text {
  padding: 35px 40px;
}

.cta-copy-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-copy-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* SOCIAL BUTTONS */
.cta-social {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.cta-social a {
  padding: 14px 30px;
  border: 1.5px solid #111;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: all .25s ease;
}

.cta-social a:hover {
  background: #111;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .cta-section {
    padding: 55px 25px;
    border-radius: 22px;
  }

  .cta-section h2 {
    font-size: 30px;
  }

  .cta-email {
    font-size: 16px;
  }

  .cta-nav {
    flex-wrap: wrap;
    gap: 25px;
    font-size: 16px;
  }

  .cta-social {
    flex-direction: column;
    gap: 18px;
  }

  .cta-social a {
    width: 100%;
  }
}

/* ===============================
   REMOVE FINAL PAGE GAP
================================ */
html, body {
  height: 100%;
}

body {
  margin: 0;
}

section:last-of-type {
  margin-bottom: 0 !important;
}

.cta-section {
  margin-bottom: 40px; /* controlled ending */
}


/* ===============================
   BASE RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f3f3f3;
  color: #111;
  line-height: 1.6;
}

/* ===============================
   SECTION WRAPPER
================================ */
.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 70px;
  text-align: center;
}

/* ===============================
   BRAND HEADER
================================ */
.publisher-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.publisher-logo img {
  width: 220px;
  max-width: 75%;
  height: auto;
}

.publisher-top {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #555;
}

.publisher-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* ===============================
   HERO TEXT
================================ */
.headline {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.headline span {
  color: #d4a437;
}

.subheadline {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* ===============================
   CATEGORY GRID
================================ */
.paper-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.paper-card {
  text-align: center;
}

.paper-image-wrapper {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: transform .3s ease;
}

.paper-image-wrapper:hover {
  transform: translateY(-5px);
}

.paper-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.paper-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
}

.read-link {
  font-size: 16px;
  font-weight: 600;
  color: #2f66d0;
  text-decoration: none;
  position: relative;
}

.read-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #2f66d0;
}

/* ===============================
   CTA SECTION
================================ */
.cta-section {
  max-width: 1000px;
  margin: 40px auto 50px;
  padding: 60px 40px;
  background: #efefef;
  border-radius: 28px;
  text-align: center;
}

.cta-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cta-email {
  font-size: 18px;
  color: #666;
  margin-bottom: 35px;
}

.cta-divider {
  height: 1px;
  background: #ddd;
  margin: 30px auto 40px;
  max-width: 85%;
}

.cta-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  font-size: 16px;
  margin-bottom: 45px;
}

.cta-nav a {
  text-decoration: none;
  color: #111;
  padding-bottom: 4px;
  border-bottom: 2px solid #9dbf8a;
}

/* COPYRIGHT PANEL */
.cta-copyright {
  border: 1.5px solid #111;
  border-radius: 24px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto 35px;
}

.cta-logo-box {
  background: #111;
  padding: 18px;
  text-align: center;
}

.cta-logo-box img {
  width: 85px;
  opacity: .9;
}

.cta-copy-text {
  padding: 30px;
}

.cta-copy-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-copy-text p {
  font-size: 15px;
  color: #555;
}

/* SOCIAL BUTTONS */
.cta-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-social a {
  padding: 12px 28px;
  border: 1.5px solid #111;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: all .25s ease;
}

.cta-social a:hover {
  background: #111;
  color: #fff;
}

/* ===============================
   LEGAL FOOTER
================================ */
.legal-footer {
  background: #e9e9e9;
  padding: 20px 15px 25px;
  font-size: 14px;
  text-align: center;
  color: #333;
  border-top: 1px solid #d5d5d5;
}

/* Remove extra bottom gap */
.legal-footer:last-child {
  margin-bottom: 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .headline {
    font-size: 30px;
  }

  .subheadline {
    font-size: 15px;
  }

  .paper-grid {
    gap: 40px 20px;
  }

  .cta-section {
    padding: 45px 20px;
    border-radius: 20px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .cta-social {
    flex-direction: column;
  }

  .cta-social a {
    width: 100%;
  }
}
