.fec-page {
    --fec-primary: #684c71;
    --fec-primary-light: #8e6d99;
    --fec-primary-dark: #4a3650;
    --fec-accent: #ffd02d;
    --fec-bg: #f7f9fc;
    --fec-white: #ffffff;
    --fec-text: #1a1a1a;
    --fec-text-light: #666666;
    --fec-border: rgba(104, 76, 113, 0.12);
    --fec-radius: 12px;
    --fec-shadow: 0 10px 30px rgba(104, 76, 113, 0.08);
    --fec-shadow-hover: 0 20px 50px rgba(104, 76, 113, 0.15);
    --fec-hero-image: url('https://fec.aichronicle.online/wp-content/uploads/2026/04/fec-default-hero.jpg');
    color: var(--fec-text);
    font-family: 'Poppins', sans-serif;
}

.fec-page *,
.fec-page *::before,
.fec-page *::after {
    box-sizing: border-box;
}

.fec-page a {
    color: var(--fec-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.fec-page a:hover,
.fec-page a:focus {
    color: var(--fec-primary-dark);
}

.fec-page p,
.fec-page li {
    color: var(--fec-text-light);
    font-size: 15px;
    line-height: 1.75;
}

.fec-page strong {
    color: var(--fec-text);
}

.fec-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fec-page-hero {
    padding: 72px 0 56px;
    background: linear-gradient(135deg, rgba(104, 76, 113, 0.95), rgba(74, 54, 80, 0.92));
    color: var(--fec-white);
}

.fec-page-hero:not(.fec-single-hero) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.fec-page-hero:not(.fec-single-hero)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(112deg, rgba(62, 40, 72, 0.82) 0%, rgba(92, 64, 102, 0.74) 44%, rgba(104, 76, 113, 0.58) 100%),
        radial-gradient(circle at top right, rgba(255, 208, 45, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 26%),
        var(--fec-hero-image);
    background-size: cover, auto, auto, cover;
    background-position: center, top right, bottom left, center;
    background-repeat: no-repeat;
    filter: saturate(0.88) brightness(0.72);
    transform: scale(1.03);
}

.fec-page-hero:not(.fec-single-hero)::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(23, 14, 28, 0.12) 0%, rgba(23, 14, 28, 0.24) 100%),
        linear-gradient(112deg, rgba(73, 45, 82, 0.48) 0%, rgba(104, 76, 113, 0.34) 48%, rgba(126, 97, 137, 0.22) 100%);
    pointer-events: none;
}

.fec-page-hero:not(.fec-single-hero) .fec-page-container {
    position: relative;
    z-index: 1;
}

.fec-page-hero .fec-page-eyebrow,
.fec-page-hero .fec-page-title,
.fec-page-hero .fec-page-lead,
.fec-page-hero .fec-hero-meta,
.fec-page-hero .fec-hero-meta span {
    color: var(--fec-white);
}

.fec-page-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    max-width: max-content;
    gap: 6px;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.fec-page-title {
    margin: 0 0 16px;
    color: var(--fec-primary-dark);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.fec-page-lead {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
}

.fec-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.fec-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: inherit;
    font-weight: inherit;
}

.fec-hero-meta span + span::before {
    content: "\2022";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.42);
}

.fec-page-section {
    padding: 64px 0;
}

.fec-page-section--alt {
    background: var(--fec-bg);
}

.fec-section-header {
    margin-bottom: 34px;
}

.fec-section-title {
    margin: 0 0 10px;
    color: var(--fec-primary);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
}

.fec-section-desc {
    max-width: 760px;
    margin: 0;
}

.fec-grid {
    display: grid;
    gap: 24px;
}

.fec-grid--1 {
    grid-template-columns: minmax(0, 1fr);
}

.fec-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fec-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fec-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fec-card {
    position: relative;
    padding: 30px;
    background: var(--fec-white);
    border: 1px solid var(--fec-border);
    border-radius: var(--fec-radius);
    box-shadow: var(--fec-shadow);
}

.fec-card--accent {
    border-top: 4px solid var(--fec-accent);
}

.fec-card--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 249, 252, 1));
}

.fec-card h3,
.fec-card h4 {
    margin: 0 0 12px;
    color: var(--fec-primary);
    font-size: 21px;
    line-height: 1.3;
}

.fec-card p:last-child,
.fec-card ul:last-child {
    margin-bottom: 0;
}

.fec-profile-photo {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--fec-border);
    box-shadow: var(--fec-shadow);
    margin: 0 0 14px;
}

.fec-card ul {
    margin: 0;
    padding-left: 18px;
}

.fec-card li + li {
    margin-top: 8px;
}

.fec-keyline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 16px;
    border-left: 4px solid var(--fec-accent);
}

.fec-keyline strong {
    color: var(--fec-primary);
}

.fec-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    background: rgba(104, 76, 113, 0.05);
    border-radius: var(--fec-radius);
    border: 1px solid rgba(104, 76, 113, 0.08);
}

.fec-stat-value {
    color: var(--fec-primary);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.fec-stat-label {
    color: var(--fec-text-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.fec-links {
    display: grid;
    gap: 16px;
}

.fec-link-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 24px;
    background: var(--fec-white);
    border: 1px solid var(--fec-border);
    border-radius: var(--fec-radius);
    box-shadow: var(--fec-shadow);
}

.fec-link-card strong {
    color: var(--fec-primary);
    font-size: 18px;
}

.fec-link-card span {
    color: var(--fec-text-light);
    font-size: 14px;
    line-height: 1.6;
}

.fec-link-card em {
    color: var(--fec-primary-dark);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.fec-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fec-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(104, 76, 113, 0.1);
    color: var(--fec-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.fec-contact-list {
    display: grid;
    gap: 10px;
}

.fec-contact-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fec-contact-label {
    color: var(--fec-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.fec-contact-value {
    color: var(--fec-text-light);
    font-size: 15px;
}

.fec-highlight {
    padding: 24px 28px;
    background: rgba(255, 208, 45, 0.16);
    border-radius: var(--fec-radius);
    border: 1px solid rgba(255, 208, 45, 0.32);
}

.fec-highlight p {
    margin: 0;
    color: var(--fec-primary-dark);
    font-weight: 500;
}

.fec-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(104, 76, 113, 0.06);
    color: var(--fec-text-light);
    font-size: 13px;
    line-height: 1.7;
}

.fec-empty-state {
    padding: 26px 28px;
    background: var(--fec-white);
    border: 1px solid var(--fec-border);
    border-radius: var(--fec-radius);
    box-shadow: var(--fec-shadow);
    color: var(--fec-text-light);
}

.fec-badge-row--editorial {
    gap: 8px;
}

.fec-editorial-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--fec-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fec-editorial-card .fec-editorial-chip {
    background: rgba(104, 76, 113, 0.1);
    color: var(--fec-primary);
}

.fec-editorial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--fec-shadow-hover);
    background: linear-gradient(135deg, rgba(104, 76, 113, 0.94), rgba(74, 54, 80, 0.92));
}

.fec-editorial-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.fec-editorial-slide {
    position: relative;
    min-width: 100%;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}

.fec-editorial-slide-media,
.fec-editorial-slide-media img {
    width: 100%;
    height: 100%;
}

.fec-editorial-slide-media {
    position: absolute;
    inset: 0;
}

.fec-editorial-slide-media img {
    display: block;
    object-fit: cover;
    transform: scale(1.02);
}

.fec-editorial-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(25, 18, 28, 0.8) 0%, rgba(25, 18, 28, 0.38) 55%, rgba(25, 18, 28, 0.14) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.58) 100%);
}

.fec-editorial-slide-content {
    position: relative;
    z-index: 1;
    width: min(640px, calc(100% - 64px));
    margin: 0 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fec-editorial-slide-content h3 {
    margin: 0;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.fec-editorial-slide-content h3 a,
.fec-editorial-slide-content p,
.fec-editorial-slide-content .fec-editorial-meta {
    color: var(--fec-white);
}

.fec-editorial-slide-content p {
    max-width: 54ch;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.92;
}

.fec-editorial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #8f8796;
}

.fec-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--fec-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fec-editorial-link::after {
    content: '->';
    transition: transform 0.2s ease;
}

.fec-editorial-link:hover::after,
.fec-editorial-link:focus::after {
    transform: translateX(3px);
}

.fec-editorial-slider-nav {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.fec-editorial-arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--fec-white);
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.fec-editorial-arrow:hover,
.fec-editorial-arrow:focus {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.fec-editorial-slider-dots {
    position: absolute;
    left: 40px;
    bottom: 26px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.fec-editorial-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fec-editorial-dot.is-active {
    background: var(--fec-accent);
    transform: scale(1.1);
}

.fec-editorial-slider--single .fec-editorial-slider-nav,
.fec-editorial-slider--single .fec-editorial-slider-dots {
    display: none;
}

.fec-editorial-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fec-editorial-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--fec-white);
    border: 1px solid var(--fec-border);
    border-radius: 18px;
    box-shadow: var(--fec-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.fec-editorial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fec-shadow-hover);
    border-color: rgba(255, 208, 45, 0.7);
}

.fec-editorial-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fec-primary), var(--fec-primary-light));
}

.fec-editorial-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.fec-editorial-card:hover .fec-editorial-card-media img {
    transform: scale(1.05);
}

.fec-editorial-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.fec-editorial-card-body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    color: var(--fec-primary-dark);
}

.fec-editorial-card-body h3 a {
    color: inherit;
}

.fec-editorial-card-body p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fec-editorial-card-body .fec-editorial-link {
    margin-top: auto;
    color: var(--fec-primary);
}

.fec-page .fec-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fec-page .fec-list li {
    padding: 18px 20px;
    background: var(--fec-white);
    border: 1px solid var(--fec-border);
    border-radius: 10px;
    box-shadow: var(--fec-shadow);
}

.fec-page .fec-list li > a,
.fec-page .fec-list li > span {
    color: var(--fec-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.fec-page .fec-meta {
    margin-top: 8px;
    color: #8f8796;
    font-size: 13px;
    font-weight: 500;
}

.fec-page .fec-meta a {
    font-weight: 600;
}

.fec-single .fec-editorial-chip {
    background: rgba(104, 76, 113, 0.12);
    color: var(--fec-primary);
}

.fec-badge-row--single .fec-editorial-chip {
    background: rgba(104, 76, 113, 0.08);
    color: var(--fec-primary);
}

.fec-single-hero .fec-editorial-chip {
    background: rgba(255, 255, 255, 0.16);
    color: var(--fec-white);
}

.fec-single-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 60px 0 42px;
    background: linear-gradient(135deg, rgba(104, 76, 113, 0.97), rgba(74, 54, 80, 0.94));
}

.fec-single-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(112deg, rgba(62, 40, 72, 0.9) 0%, rgba(92, 64, 102, 0.84) 44%, rgba(104, 76, 113, 0.72) 100%),
        radial-gradient(circle at top right, rgba(255, 208, 45, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 26%),
        var(--fec-hero-image);
    background-size: cover, auto, auto, cover;
    background-position: center, top right, bottom left, center;
    background-repeat: no-repeat;
    filter: saturate(0.88) brightness(0.74);
    transform: scale(1.03);
}

.fec-single-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(23, 14, 28, 0.14) 0%, rgba(23, 14, 28, 0.26) 100%),
        linear-gradient(112deg, rgba(73, 45, 82, 0.54) 0%, rgba(104, 76, 113, 0.42) 48%, rgba(126, 97, 137, 0.28) 100%);
    pointer-events: none;
}

.fec-single-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 380px);
    gap: 48px;
    align-items: center;
    min-height: clamp(520px, 64vh, 620px);
}

.fec-single-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    max-width: 760px;
    justify-content: center;
    align-self: center;
    transform: translateY(clamp(-44px, -3.2vw, -18px));
}

.fec-single-hero-copy .fec-page-title,
.fec-single-hero-copy .fec-page-lead {
    margin: 0;
}

.fec-single-hero-copy .fec-page-title {
    max-width: 18ch;
}

.fec-single-hero-copy .fec-page-lead {
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.fec-single-hero-copy .fec-hero-meta {
    align-self: flex-start;
    margin-top: 0;
}

.fec-single-hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    height: clamp(420px, 42vw, 560px);
    max-width: 460px;
    width: 100%;
    margin-left: auto;
    padding: 18px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--fec-shadow-hover);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fec-single-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.fec-lightbox-trigger {
    cursor: zoom-in;
}

.fec-lightbox-trigger:focus {
    outline: 3px solid rgba(255, 208, 45, 0.7);
    outline-offset: 4px;
}

.fec-single-story-section {
    background:
        linear-gradient(180deg, rgba(247, 249, 252, 0.96) 0%, rgba(255, 255, 255, 1) 180px);
}

.fec-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: start;
}

.fec-single-content {
    min-width: 0;
}

.fec-single-story-main {
    display: grid;
    gap: 24px;
}

.fec-single-summary {
    display: grid;
    gap: 10px;
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(104, 76, 113, 0.1);
    border-radius: 18px;
    box-shadow: var(--fec-shadow);
}

.fec-single-summary-label {
    color: var(--fec-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.fec-single-summary p {
    margin: 0;
    color: var(--fec-primary-dark);
    font-size: 18px;
    line-height: 1.7;
    max-width: 68ch;
}

.fec-single-prose {
    padding: 42px 46px;
    background: var(--fec-white);
    border: 1px solid var(--fec-border);
    border-radius: 22px;
    box-shadow: var(--fec-shadow);
}

.fec-single-prose > :first-child {
    margin-top: 0;
}

.fec-single-prose > :last-child {
    margin-bottom: 0;
}

.fec-single-prose h2,
.fec-single-prose h3,
.fec-single-prose h4 {
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    color: var(--fec-primary);
    line-height: 1.25;
}

.fec-single-prose p,
.fec-single-prose li {
    color: var(--fec-text-light);
    font-size: 17px;
    line-height: 1.9;
    max-width: 70ch;
}

.fec-single-prose p + p {
    margin-top: 1.15em;
}

.fec-single-prose .fec-single-import {
    display: grid;
    gap: 0;
}

.fec-single-prose .fec-single-import > * + * {
    margin-top: 1.15em;
}

.fec-single-prose h2,
.fec-single-prose h3,
.fec-single-prose h4,
.fec-single-prose ul,
.fec-single-prose ol,
.fec-single-prose blockquote {
    max-width: 70ch;
}

body.fec-lightbox-open {
    overflow: hidden;
}

.fec-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(20, 14, 22, 0.82);
    backdrop-filter: blur(6px);
}

.fec-lightbox[hidden] {
    display: none !important;
}

.fec-lightbox__dialog {
    position: relative;
    max-width: min(1200px, 100%);
    max-height: min(92vh, 100%);
    display: grid;
    gap: 16px;
    justify-items: center;
}

.fec-lightbox__image {
    display: block;
    max-width: min(1200px, calc(100vw - 80px));
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.fec-lightbox__caption {
    max-width: 70ch;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

.fec-lightbox__close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--fec-white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.fec-lightbox__close:hover,
.fec-lightbox__close:focus {
    background: rgba(255, 255, 255, 0.24);
}

.fec-single-prose ul,
.fec-single-prose ol {
    padding-left: 1.2em;
}

.fec-single-prose .fec-single-import {
    display: grid;
    gap: 0;
}

.fec-single-prose img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 26px 0;
    border-radius: 20px;
    box-shadow: var(--fec-shadow);
}

.fec-single-prose blockquote {
    margin: 28px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--fec-accent);
    background: rgba(104, 76, 113, 0.05);
    color: var(--fec-primary-dark);
    border-radius: 0 14px 14px 0;
}

.fec-single-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 180px;
}

.fec-badge-row--single {
    gap: 8px;
}

.fec-single-panel {
    border-radius: 20px;
}

.fec-single-panel h3 {
    margin-bottom: 14px;
}

.fec-single-panel--cta p {
    margin: 0;
}

.fec-single-facts-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.fec-single-fact {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    background: rgba(255, 208, 45, 0.16);
    border: 1px solid rgba(255, 208, 45, 0.36);
    border-radius: 18px;
}

.fec-single-fact-label {
    color: var(--fec-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fec-single-fact strong {
    color: var(--fec-primary-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.fec-single-links,
.fec-single-actions {
    display: grid;
    gap: 10px;
}

.fec-single-links {
    margin-top: 16px;
}

.fec-single-links a {
    font-weight: 600;
}

.fec-editorial-link--solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: auto;
    min-width: 0;
    padding: 13px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(35, 22, 44, 0.18);
    color: var(--fec-white) !important;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
    white-space: nowrap;
    flex: 0 0 auto;
}

.fec-editorial-link--ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    min-width: 0;
    padding: 13px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: var(--fec-white) !important;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
    white-space: nowrap;
    flex: 0 0 auto;
}

.fec-editorial-link--solid:hover,
.fec-editorial-link--solid:focus,
.fec-editorial-link--ghost:hover,
.fec-editorial-link--ghost:focus {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .fec-grid--2,
    .fec-grid--3,
    .fec-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fec-editorial-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fec-editorial-slide {
        min-height: 460px;
    }

    .fec-single-hero-grid,
    .fec-single-layout {
        grid-template-columns: 1fr;
    }

    .fec-single-hero-media {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .fec-single-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .fec-page-hero,
    .fec-page-section {
        padding: 48px 0;
    }

    .fec-grid--2,
    .fec-grid--3,
    .fec-grid--4 {
        grid-template-columns: 1fr;
    }

    .fec-editorial-card-grid {
        grid-template-columns: 1fr;
    }

    .fec-card,
    .fec-link-card {
        padding: 22px;
    }

    .fec-section-title {
        font-size: 26px;
    }

    .fec-editorial-slider {
        border-radius: 18px;
    }

    .fec-editorial-slide {
        min-height: 430px;
    }

    .fec-editorial-slide-content {
        width: calc(100% - 40px);
        margin: 0 20px 24px;
    }

    .fec-editorial-slide-content h3 {
        font-size: 28px;
    }

    .fec-editorial-slide-content p {
        font-size: 15px;
    }

    .fec-editorial-slider-nav {
        right: 16px;
        bottom: 16px;
    }

    .fec-editorial-slider-dots {
        left: 20px;
        bottom: 18px;
    }

    .fec-single-prose {
        padding: 28px 22px;
    }

    .fec-single-hero-grid {
        gap: 24px;
        min-height: 0;
    }

    .fec-single-hero-copy {
        transform: none;
        max-width: 100%;
    }

    .fec-single-hero-media {
        max-width: none;
        min-height: 320px;
        height: auto;
        border-radius: 18px;
        padding: 14px;
    }

    .fec-single-summary {
        padding: 20px 18px;
    }

    .fec-single-summary p,
    .fec-single-prose p,
    .fec-single-prose li {
        font-size: 16px;
    }
    .fec-single-facts-strip {
        grid-template-columns: 1fr;
    }

    .fec-lightbox {
        padding: 20px;
    }

    .fec-lightbox__image {
        max-width: calc(100vw - 40px);
        max-height: calc(100vh - 120px);
    }

    .fec-lightbox__close {
        top: -8px;
        right: -4px;
    }
}
