/* ==========================================================================
   Fonts (Ciron only — the only typeface used)
   ========================================================================== */

@font-face {
  font-family: Ciron;
  src: url(CironText-Regular.432dc466.otf) format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Ciron;
  src: url(CironText-Medium.83637fe0.otf) format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Ciron;
  src: url(CironText-Bold.496ebe2c.otf) format("opentype");
  font-weight: 700;
  font-style: normal;
}


/* ==========================================================================
   CSS Variables & Global Reset
   ========================================================================== */

:root {
  --black: #101010;
}

* {
  scroll-behavior: smooth;
  box-sizing: content-box;
}

body,
html {
  padding: 0;
  margin: 0;
  font-family: Ciron, Helvetica, sans-serif;
  background: none;
  height: 100vh;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ==========================================================================
   Main Container & Background
   ========================================================================== */

.main-container {
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: auto;
}

.main-container h1 {
  font-family: Ciron;
  text-align: left;
  font-size: 72px;
  margin: .7em 0 .1em 13px;
  color: #fff;
}

.main-container h1 span {
  font-weight: 300;
}

.background-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: -1;
  background-color: #000;
}

.background-container img {
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/* ==========================================================================
   Info Nav (logo + date) & Anchor Nav (menu)
   ========================================================================== */

.info-nav {
  display: flex;
  color: #fff;
  justify-content: space-between;
  padding: 18px;
  font-weight: 300;
  width: 100%;
  box-sizing: border-box;
}

.info-nav .logo {
  float: left;
  margin: 0;
}

.info-nav .logo img {
  width: 120px;
}

.anchor-nav {
  text-align: left;
  font-size: 20px;
  color: #fff;
  list-style: none;
  display: flex;
  min-width: 90%;
  max-width: 90%;
  justify-content: flex-start;
  gap: 0;
  padding: 0 0 0 12px;
  flex-wrap: wrap;
}

.anchor-nav li {
  font-weight: 300;
  white-space: nowrap;
  padding-right: 1em;
  cursor: pointer;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.anchor-nav li:hover {
  text-decoration: none;
}


/* ==========================================================================
   Topic Container
   ========================================================================== */

ul li {
  margin: 5px;
}

.topic-container-col {
  border-radius: 0;
  color: #000;
  min-width: 90%;
  max-width: 90%;
  margin-bottom: calc(2em + 25px);
  position: relative;
  background-color: #efefef;
  overflow: visible;
  overflow-anchor: none;
}

.topic-container-col a {
  text-decoration: underline;
  color: inherit;
}

.topic-container-col a:hover {
  text-decoration: none;
}

.topic-container {
  padding: 50px 140px 50px 140px;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  transition: height .5s ease;
  overflow: hidden;
  position: relative;
  transform-origin: top;
  overflow-anchor: none;
  will-change: height;
  backface-visibility: hidden;
}

/* Section font sizes ×1.2 */
.topic-container h2 {
  font-weight: 500;
  font-size: 76px;            /* was 60px × 1.2 */
  margin: .7em 0 .2em;
}

.topic-container h4,
.topic-container p {
  margin: 0;
}

.topic-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(
    to top,
    #efefef 0%,
    rgba(239, 239, 239, 0.8) 30%,
    rgba(239, 239, 239, 0.4) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 5;
}


/* ==========================================================================
   News Highlights — fluid text wrapping around image
   ========================================================================== */

.highlight-wrapper {
  border-top: 2px solid #000;
  margin: 4px 0;
  overflow: hidden;           /* contain the float */
}

.news-highlight {
  background-color: #efefef;
  width: 100%;
  overflow: hidden;           /* clearfix for float */
}

.image-wrapper {
  float: right;
  width: 45%;
  padding: 2em 0 1em 2em;
  overflow: hidden;
}

.image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 600px;
}

.text-container {
  color: var(--black);
  padding: 2em 0 2em 0;
}

.text-container h3 {
  margin: 0 0 .5em;
  font-size: 52px;            /* was 40px × 1.2 */
  font-weight: 500;
}

.main-text {
  white-space: pre-wrap;
  text-align: justify;
  font-weight: 300;
  font-size: 28px;            /* was 20px × 1.2 */
  line-height: 1.5;
}

/* Links inside body text — inherit colour, underline only */
.main-text a,
.main-text a:hover,
.main-text a:visited {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ==========================================================================
   Monthly Picks — expanded section + Read PDF button
   ========================================================================== */

/* The Monthly Picks section is always expanded (no collapse / Show More) */
.topic-container-expanded {
  height: auto !important;
  overflow: visible;
}

/* No fade gradient on expanded section */
.topic-container-expanded::after {
  display: none;
}

/* Read PDF button — same look as Show More, centered at bottom */
.read-pdf-wrap {
  text-align: center;
  padding: 2em 0 3em;
  margin-bottom: 2em;
  position: relative;
  z-index: 10;
}

.read-pdf-button {
  display: inline-block !important;
  position: relative !important;
  left: auto !important;
  transform: none !important;
  text-decoration: none !important;
  padding: 15px 28px !important;         /* match Show More height */
  font-size: 14px !important;
  line-height: 1 !important;
}

.read-pdf-button:hover {
  transform: scale(1.08) !important;
}


/* ==========================================================================
   Show More / Show Less Button
   ========================================================================== */

.show-more-button {
  position: absolute !important;
  z-index: 99999 !important;
  padding: 15px 28px !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  color: #fff !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 30px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  font-family: Ciron, Helvetica, sans-serif !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
  min-width: 140px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.show-more-button:hover {
  background-color: rgba(0, 0, 0, 1) !important;
  transform: translateX(-50%) scale(1.08) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8) !important;
  border-color: rgba(255, 255, 255, 1) !important;
}


/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.back-to-top:hover {
  background-color: hsla(0, 0%, 6%, .75);
}


/* ==========================================================================
   Large desktop ≥ 2080px — section font sizes ×1.5
   ========================================================================== */

@media only screen and (min-width: 2080px) {
  .topic-container h2 {
    font-size: 90px;          /* 60px × 1.5 */
  }

.topic-container-col {
    border-radius: 0;
    color: #000;
    min-width: 1800px;
    max-width: 1800px;
    margin-bottom: calc(2em + 25px);
    position: relative;
    background-color: #efefef;
    overflow: visible;
    overflow-anchor: none;
}


  .text-container h3 {
    font-size: 60px;          /* 40px × 1.5 */
  }

  .main-text {
    font-size: 30px;          /* 20px × 1.5 */
  }

}


/* ==========================================================================
   Mobile ≤ 1000px
   ========================================================================== */

@media only screen and (max-width: 1000px) {
  * {
    box-sizing: border-box;
  }

  .main-container h1 {
    font-size: 44px;
    margin: .75em .4em .25em;
  }

  .topic-container {
    padding: 1em;
  }

  .topic-container h2 {
    font-size: 36px;
    text-align: left;
    margin: .25em 0 .5em;
  }

  .highlight-wrapper {
    padding-left: 0;
  }

  /* Stack image above text on mobile */
  .image-wrapper {
    float: none;
    width: 100%;
    padding: 1em 0;
    max-height: 300px;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .text-container {
    width: 100%;
    padding: 1em 0;
  }

  .text-container h3 {
    font-size: 24px;
    font-weight: 500;
    margin: .5em 0;
  }

  .text-container p {
    font-size: 14px;
  }

  .main-text {
    text-align: left;
    font-size: 18px;
  }

  .back-to-top {
    font-size: 24px;
    bottom: 10px;
    right: 10px;
  }
}
