/* ─────────────────────────────────────────────────────────────────────────────
   News Sections — Front-end Styles
   Sophisticated, artistic, futuristic design system.
   ───────────────────────────────────────────────────────────────────────────── */

/* ── CSS Variables ── */
.anp-post {
    --accent:       #632DE9;
    --teal:         #39AF91;
    --dark:         #0F3737;
    --peach:        #FAB295;
    --mint:         #A7E8DB;
    --bg:           #F1F0F6;
    --muted-bg:     #BDB6D9;
    --body-max:     840px;
    --wide-max:     1200px;
    --pad:          clamp(1.25rem, 4vw, 3rem);
    --font-head:    "Josefin Sans", sans-serif;
    --font-body:    Lato, sans-serif;
    --font-accent:  Poppins, sans-serif;
}

/* ── Template skins ── */
[data-template="feature"] {
    --accent:          #632DE9;
    --skin-secondary:  #39AF91;
}

[data-template="press-release"] {
    --accent:          #0F3737;
    --skin-secondary:  #632DE9;
}

[data-template="recap"] {
    --accent:          #39AF91;
    --skin-secondary:  #632DE9;
}

[data-template="announcement"] {
    --accent:          #632DE9;
    --skin-secondary:  #FAB295;
}

[data-template="article"] {
    --accent:          #632DE9;
    --skin-secondary:  #39AF91;
}

/* ── Suppress native post title — hero section renders its own h1 ── */
.entry-title,
.elementor-widget-theme-post-title .elementor-heading-title,
.elementor-widget-post-title .elementor-heading-title {
    display: none !important;
}

/* ── Base ── */
.anp-post {
    font-family: var(--font-body);
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

.anp-post *,
.anp-post *::before,
.anp-post *::after {
    box-sizing: border-box;
}

/* ── Progress bar ── */
.anp-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    background: rgba(99, 45, 233, 0.15);
    pointer-events: none;
}

.anp-progress-bar__fill {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #632DE9, #39AF91);
    transition: width 0.1s linear;
    will-change: width;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────────── */

.anp-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.anp-hero__image {
    position: absolute;
    inset: 0;
}

.anp-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay variants */
.anp-hero--dark .anp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 55, 55, 0.92) 0%,
        rgba(15, 55, 55, 0.40) 60%,
        transparent 100%
    );
}

.anp-hero--gradient .anp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(99, 45, 233, 0.85) 0%,
        rgba(57, 175, 145, 0.70) 100%
    );
}

.anp-hero--none .anp-hero__overlay {
    display: none;
}

/* Stamp — press-release watermark */
.anp-hero__stamp {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    transform: rotate(-15deg);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    pointer-events: none;
    user-select: none;
}

/* Date watermark — announcement / feature */
.anp-hero__date-watermark {
    position: absolute;
    bottom: -0.2em;
    right: -0.1em;
    font-family: var(--font-head);
    font-size: clamp(8rem, 20vw, 14rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

/* Content */
.anp-hero__content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 3rem clamp(1.5rem, 6vw, 5rem);
}

.anp-hero__category {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #632DE9, #39AF91);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.anp-hero__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.anp-hero__date {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

/* Suppress native theme tag list */
.single-news .post-tags {
    display: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LEDE
   ───────────────────────────────────────────────────────────────────────────── */

.anp-lede {
    max-width: var(--wide-max);
    margin: 2.5rem auto;
    padding: 0 var(--pad);
}

.anp-lede__text {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
    margin: 0;
}

/* Article template: glassmorphism lede */
[data-template="article"] .anp-lede {
    background: rgba(99, 45, 233, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(99, 45, 233, 0.12);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BODY
   ───────────────────────────────────────────────────────────────────────────── */

.anp-body {
    max-width: var(--body-max);
    margin: 2rem auto;
    padding: 0 var(--pad);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--dark);
}

.anp-body p {
    margin: 0 0 1.5em;
}

.anp-body p:last-child {
    margin-bottom: 0;
}

.anp-body h2,
.anp-body h3 {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--dark);
    margin: 2em 0 0.5em;
    line-height: 1.25;
}

.anp-body h2 {
    font-size: 1.6rem;
}

.anp-body h3 {
    font-size: 1.25rem;
}

.anp-body ul,
.anp-body ol {
    padding-left: 1.5em;
    margin: 0 0 1.5em;
}

.anp-body li {
    margin-bottom: 0.4em;
}

.anp-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.anp-body a:hover {
    color: var(--teal);
}

/* ── Drop cap ── */
.anp-body--drop-cap > p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-head);
    font-size: 5em;
    line-height: 0.75;
    padding-right: 0.1em;
    padding-top: 0.05em;
    color: var(--accent);
    font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PULL QUOTE
   ───────────────────────────────────────────────────────────────────────────── */

.anp-pullquote {
    max-width: var(--body-max);
    margin: 2.5rem auto;
    padding: 0 var(--pad);
}

/* Leftbar variant */
.anp-pullquote--leftbar blockquote {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    border-left: 4px solid var(--accent);
    margin: 0;
}

.anp-pullquote--leftbar blockquote::before {
    content: '\201C';
    position: absolute;
    top: -0.3em;
    left: -0.02em;
    font-size: 8rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    font-family: Georgia, serif;
    pointer-events: none;
}

.anp-pullquote--leftbar p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 1;
}

.anp-pullquote--leftbar cite {
    font-size: 0.85rem;
    font-family: var(--font-accent);
    color: var(--teal);
    font-style: normal;
}

/* Centered variant */
.anp-pullquote--centered {
    max-width: none;
    margin: 3rem -2rem;
    padding: 0;
}

.anp-pullquote--centered blockquote {
    text-align: center;
    padding: 2rem 4rem;
    position: relative;
    margin: 0;
}

.anp-pullquote--centered blockquote::before {
    content: '\201C';
    position: absolute;
    top: -0.2em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.08;
    font-family: Georgia, serif;
    pointer-events: none;
}

.anp-pullquote--centered p {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: var(--dark);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.anp-pullquote--centered cite {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--teal);
    font-style: normal;
}

/* Fullbleed variant */
.anp-pullquote--fullbleed {
    max-width: none;
    margin: 3rem 0;
    padding: 0;
}

.anp-pullquote--fullbleed blockquote {
    background: linear-gradient(135deg, var(--accent), var(--teal));
    padding: 3rem 4rem;
    margin: 0;
}

.anp-pullquote--fullbleed p {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: #fff;
    font-style: italic;
    font-family: var(--font-head);
    margin: 0 0 1rem;
    text-align: center;
}

.anp-pullquote--fullbleed p:last-child {
    margin-bottom: 0;
}

.anp-pullquote--fullbleed cite {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-style: normal;
}

/* ─────────────────────────────────────────────────────────────────────────────
   IMAGE BREAK
   ───────────────────────────────────────────────────────────────────────────── */

.anp-image-break {
    margin: 2.5rem auto;
}

.anp-image-break--contained {
    max-width: var(--body-max);
    padding: 0 var(--pad);
}

.anp-image-break--wide {
    max-width: var(--wide-max);
    padding: 0 1rem;
}

.anp-image-break--fullbleed {
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding: 0;
}

.anp-image-break figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.anp-image-break--fullbleed figure {
    border-radius: 0;
}

.anp-image-break img {
    width: 100%;
    height: auto;
    display: block;
}

/* Caption: hover-reveal sliding up from bottom */
.anp-image-break figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 55, 55, 0.85);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    margin: 0;
    border-radius: 0 0 12px 12px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-style: italic;
}

.anp-image-break--fullbleed figcaption {
    border-radius: 0;
}

.anp-image-break figure:hover figcaption {
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────────
   STAT
   ───────────────────────────────────────────────────────────────────────────── */

.anp-stat {
    text-align: center;
    padding: 3rem 2rem;
    max-width: var(--body-max);
    margin: 2rem auto;
    position: relative;
}

.anp-stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 45, 233, 0.08), transparent);
    z-index: 0;
    pointer-events: none;
}

.anp-stat__number {
    font-family: var(--font-head);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #632DE9, #39AF91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    display: block;
}

.anp-stat__label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
    margin-top: 0.25rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.anp-stat__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CIRCULAR IMAGE  (feature only)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-circular-image {
    max-width: var(--body-max);
    margin: 2rem auto;
    padding: 0 var(--pad);
    overflow: hidden;
}

.anp-circular-image--left figure {
    float: left;
    margin: 0 2rem 1rem 0;
    shape-outside: circle(50%);
}

.anp-circular-image--right figure {
    float: right;
    margin: 0 0 1rem 2rem;
    shape-outside: circle(50%);
}

.anp-circular-image figure {
    margin: 0;
}

.anp-circular-image figure img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 4px solid var(--mint);
}

.anp-circular-image figure figcaption {
    text-align: center;
    font-size: 0.75rem;
    font-family: var(--font-accent);
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

.anp-circular-image__content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--dark);
}

.anp-circular-image__content p {
    margin: 0 0 1.2em;
}

.anp-circular-image::after {
    content: '';
    display: table;
    clear: both;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TIMELINE ITEM  (recap only)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-timeline-item {
    display: flex;
    gap: 0;
    max-width: var(--body-max);
    margin: 0 auto;
    padding: 0 var(--pad);
    position: relative;
}

/* Connecting line between items */
.anp-timeline-item + .anp-timeline-item .anp-timeline-item__spine::after {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2rem;
    background: var(--teal);
}

.anp-timeline-item__spine {
    width: 40px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
    position: relative;
}

.anp-timeline-item__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--teal);
    flex-shrink: 0;
    display: block;
}

.anp-timeline-item__body {
    flex: 1;
    padding: 0 0 2.5rem 1rem;
}

.anp-timeline-item__label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.anp-timeline-item__content {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
}

/* ─────────────────────────────────────────────────────────────────────────────
   IMAGE GRID  (recap only)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-image-grid {
    display: grid;
    max-width: var(--wide-max);
    margin: 2.5rem auto;
    padding: 0 var(--pad);
    gap: 1rem;
}

.anp-image-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.anp-image-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.anp-image-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}

.anp-image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.anp-image-grid figure:hover img {
    transform: scale(1.06);
}

/* Stagger: middle item in 3-col only — 2-col stays flat to avoid overflow clipping */
.anp-image-grid--cols-3 figure:nth-child(3n + 2) {
    transform: translateY(-20px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   VIDEO EMBED
   ───────────────────────────────────────────────────────────────────────────── */

.anp-video-embed {
    margin: 2.5rem auto;
    padding: 0 var(--pad);
}

/* Width variants */
.anp-video-embed--wide      { max-width: var(--wide-max); }
.anp-video-embed--contained { max-width: var(--body-max); }
.anp-video-embed--fullbleed { max-width: none; padding: 0; }

/* Alignment (only meaningful when width < 100%) */
.anp-video-embed--align-center { margin-left: auto; margin-right: auto; }
.anp-video-embed--align-left   { margin-left: var(--pad); margin-right: auto; }
.anp-video-embed--align-right  { margin-left: auto; margin-right: var(--pad); }

.anp-video-embed figure {
    margin: 0;
}

.anp-video-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.anp-video-embed--fullbleed .anp-video-embed__wrapper {
    border-radius: 0;
}

.anp-video-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.anp-video-embed__caption {
    margin-top: 0.75rem;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 0.82rem;
    color: #888;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HIGHLIGHT BOX
   ───────────────────────────────────────────────────────────────────────────── */

.anp-highlight {
    max-width: var(--body-max);
    margin: 2rem auto;
    padding: 1.25rem 1.5rem 1.25rem 1.75rem;
    border-radius: 8px;
    border-left: 4px solid;
    transform: rotate(-0.3deg);
    position: relative;
}

.anp-highlight--tip {
    background: rgba(99, 45, 233, 0.06);
    border-color: var(--accent);
}

.anp-highlight--important {
    background: rgba(250, 178, 149, 0.15);
    border-color: var(--peach);
}

.anp-highlight--note {
    background: rgba(57, 175, 145, 0.08);
    border-color: var(--teal);
}

.anp-highlight p {
    margin: 0 0 0.75em;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dark);
}

.anp-highlight p:last-child {
    margin-bottom: 0;
}

.anp-highlight a:not(.anp-cta-btn) {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.anp-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent);
    color: #fff !important;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.anp-cta-btn:hover {
    opacity: 0.85;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RELEASE HEADER  (press-release only)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-release-header {
    max-width: var(--body-max);
    margin: 2rem auto;
    padding: 0 var(--pad);
}

.anp-release-header__date {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--muted-bg);
    margin-bottom: 0.5rem;
}

.anp-release-header__location {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.anp-release-header__embargo {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--peach);
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT BLOCK  (press-release only)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-contact-block {
    max-width: var(--body-max);
    margin: 3rem auto 2rem;
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--teal);
    background: var(--bg);
}

.anp-contact-block__label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.anp-contact-block__name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.anp-contact-block__role {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.anp-contact-block__email a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-bottom: 0.2rem;
}

.anp-contact-block__email a:hover {
    color: var(--teal);
    text-decoration: underline;
}

.anp-contact-block__phone {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TWO COLUMN  (press-release, article)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: var(--wide-max);
    margin: 2.5rem auto;
    padding: 0 var(--pad);
    align-items: start;
}

.anp-two-column__left {
    padding-right: 2rem;
    border-right: 1px solid var(--muted-bg);
}

.anp-two-column__right {
    padding-left: 2rem;
}

.anp-two-column p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark);
    margin: 0 0 1.2em;
}

.anp-two-column p:last-child {
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATEMENT BLOCK  (announcement only)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-statement {
    text-align: center;
    padding: 4rem 2rem;
    max-width: var(--wide-max);
    margin: 2rem auto;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 96% 100%, 0 100%);
    background: var(--bg);
}

.anp-statement__text {
    font-family: var(--font-head);
    line-height: 1.25;
    color: var(--dark);
    margin: 0;
}

.anp-statement--large .anp-statement__text {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.anp-statement--xl .anp-statement__text {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    background: linear-gradient(135deg, #632DE9, #39AF91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─────────────────────────────────────────────────────────────────────────────
   COLOR BAND  (announcement, article)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-color-band {
    padding: 3.5rem 4rem;
    margin: 3rem 0;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    color: #fff;
}

.anp-color-band--purple {
    background: #632DE9;
}

.anp-color-band--teal {
    background: #39AF91;
}

.anp-color-band--dark {
    background: #0F3737;
}

.anp-color-band__heading {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin: 0 0 1rem;
    color: inherit;
}

.anp-color-band__text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION BREAK
   ───────────────────────────────────────────────────────────────────────────── */

.anp-section-break {
    margin: 2.5rem auto;
    text-align: center;
    max-width: var(--body-max);
    padding: 0 var(--pad);
}

/* Diamond */
.anp-section-break--diamond {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anp-section-break--diamond::after {
    content: '◆   ◆   ◆';
    color: var(--accent);
    opacity: 0.4;
    font-size: 10px;
    letter-spacing: 8px;
    display: block;
}

/* Line */
.anp-section-break--line::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 0 auto;
    max-width: 300px;
}

/* Blank */
.anp-section-break--blank {
    height: 3rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRESS KIT LINKS  (used inside .anp-body sections)
   ───────────────────────────────────────────────────────────────────────────── */

.anp-press-kit-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
}

.anp-press-kit-links a {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none !important;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    line-height: 1.4;
    color: #fff !important;
    transition: opacity 0.2s ease;
}

.anp-press-kit-links a:first-child {
    background: var(--accent);
}

.anp-press-kit-links a:last-child {
    background: var(--teal);
}

.anp-press-kit-links a:hover {
    opacity: 0.85;
    color: #fff !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    /* Remove translateY stagger on mid-size screens to avoid overflow clipping */
    .anp-image-grid--cols-3 figure:nth-child(3n + 2) {
        transform: none;
    }
}

@media (max-width: 768px) {

    .anp-hero {
        min-height: 380px;
    }

    .anp-hero__content {
        padding: 1.75rem var(--pad);
    }

    .anp-hero__title {
        font-size: 2rem;
    }

    /* Circular image: un-float on mobile */
    .anp-circular-image--left figure,
    .anp-circular-image--right figure {
        float: none;
        margin: 0 auto 1.5rem;
        shape-outside: none;
        display: block;
    }

    .anp-circular-image figure img {
        width: 160px;
        height: 160px;
    }

    /* Two column: stack vertically */
    .anp-two-column {
        grid-template-columns: 1fr;
    }

    .anp-two-column__left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--muted-bg);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .anp-two-column__right {
        padding-left: 0;
    }

    /* Pullquote centered: remove negative margin */
    .anp-pullquote--centered {
        margin: 2rem 0;
    }

    .anp-pullquote--centered blockquote {
        padding: 1.5rem 2rem;
    }

    /* Pullquote fullbleed: reduce padding */
    .anp-pullquote--fullbleed blockquote {
        padding: 2rem 2rem;
    }

    /* Image grid: 3-col becomes 2-col */
    .anp-image-grid--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Neutralize stagger on 3-col when it becomes 2-col */
    .anp-image-grid--cols-3 figure:nth-child(3n + 2) {
        transform: none;
    }

    /* Color band: remove clip-path on small screens */
    .anp-color-band {
        clip-path: none;
        padding: 2rem;
        margin: 2rem 0;
    }

    /* Statement block: remove clip-path */
    .anp-statement {
        clip-path: none;
        padding: 2rem 1.5rem;
    }

    .anp-lede {
        margin: 1.5rem auto;
    }

    .anp-lede__text {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {

    .anp-hero {
        min-height: 320px;
    }

    .anp-stat__number {
        font-size: clamp(3rem, 10vw, 4rem);
    }

    /* Image grid: 2-col becomes 1-col */
    .anp-image-grid--cols-2,
    .anp-image-grid--cols-3 {
        grid-template-columns: 1fr;
    }

    .anp-pullquote--leftbar p {
        font-size: 1.15rem;
    }

    .anp-body {
        font-size: 1rem;
        padding: 0 1.25rem;
    }

    .anp-hero__content {
        padding: 1.5rem;
    }
}
