/* ============================================================
   EXP — additive commercial/SEO sections
   Uses the approved site's existing variables and visual language.
   No existing selector is redefined here.
   ============================================================ */

.exp-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.exp-section--sand {
    background: linear-gradient(135deg, #231a18, var(--bg-section));
}

.exp-section__intro {
    max-width: 820px;
    margin: -24px auto 48px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

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

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

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

.exp-card {
    position: relative;
    display: flex;
    min-height: 100%;
    padding: 30px 26px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.exp-card:hover {
    border-color: rgba(212, 160, 23, 0.65);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    transform: translateY(-6px);
}

.exp-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    object-fit: contain;
}

.exp-card__tag {
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(212, 160, 23, 0.45);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.exp-card h3 {
    margin-bottom: 12px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.35;
}

.exp-card p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.exp-card__link {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
}

.exp-card__link::after {
    content: '→';
}

.exp-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.22);
    border-radius: var(--radius);
    background: rgba(212, 160, 23, 0.22);
}

.exp-fact {
    padding: 26px 22px;
    background: var(--bg-card);
}

.exp-fact strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1rem;
}

.exp-fact span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.exp-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    counter-reset: exp-step;
}

.exp-process__item {
    position: relative;
    padding: 28px 22px;
    border-top: 2px solid var(--terracotta);
    background: rgba(255, 255, 255, 0.025);
    counter-increment: exp-step;
}

.exp-process__item::before {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    content: counter(exp-step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
}

.exp-process__item h3 {
    margin-bottom: 8px;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: 1rem;
}

.exp-process__item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.exp-split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 60px;
}

.exp-split--reverse .exp-split__media {
    order: 2;
}

.exp-split__media img {
    width: 100%;
    max-height: 560px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: var(--radius);
    object-fit: cover;
}

.exp-split__content h2 {
    margin-bottom: 20px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.3;
}

.exp-split__content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.exp-checklist {
    display: grid;
    margin: 22px 0 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.exp-checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--text-light);
}

.exp-checklist li::before {
    position: absolute;
    left: 0;
    color: var(--gold);
    content: '✓';
    font-weight: 700;
}

.exp-note {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 22px 26px;
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-light);
    background: rgba(212, 160, 23, 0.08);
}

.exp-note strong {
    color: var(--gold-light);
}

.exp-actions {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

.exp-actions--center {
    justify-content: center;
}

.exp-form-wrap {
    display: grid;
    padding: 38px;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 48px;
    border: 1px solid rgba(212, 160, 23, 0.28);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.exp-form-copy h3 {
    margin-bottom: 16px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.exp-form-copy p {
    color: var(--text-muted);
}

.exp-form-copy a {
    display: block;
    width: fit-content;
    margin-top: 10px;
}

.exp-lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.exp-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.exp-field--full,
.exp-consent,
.exp-form-actions,
.exp-form-status {
    grid-column: 1 / -1;
}

.exp-field label {
    color: var(--sand);
    font-size: 0.82rem;
    font-weight: 700;
}

.exp-field input,
.exp-field select,
.exp-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: var(--text-light);
    background: var(--bg-dark);
    font-family: var(--font-body);
}

.exp-field textarea {
    min-height: 112px;
    resize: vertical;
}

.exp-field select option {
    color: var(--text-light);
    background: var(--bg-dark);
}

.exp-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.exp-consent input {
    margin-top: 5px;
    accent-color: var(--gold);
}

.exp-form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.exp-form-hint,
.exp-form-status {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.exp-form-status {
    min-height: 1.4em;
    color: var(--gold-light);
}

.exp-form-status[data-state="success"] {
    color: #91d6ae;
}

.exp-form-status[data-state="error"] {
    color: #ff9a91;
}

form [type="submit"][aria-busy="true"] {
    cursor: wait;
    opacity: 0.72;
}

/* Shared ES button system. Several approved pages use these semantic classes. */
.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 27px;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.btn--primary {
    border-color: #e1b633;
    background: linear-gradient(135deg, #e0b430 0%, #bd8212 100%);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.2), inset 0 1px rgba(255, 255, 255, 0.22);
    color: #160d1d;
}

.btn--primary:hover {
    border-color: #f0ce64;
    background: linear-gradient(135deg, #e9c54e 0%, #cc941f 100%);
    box-shadow: 0 11px 30px rgba(212, 160, 23, 0.3), inset 0 1px rgba(255, 255, 255, 0.26);
    color: #100916;
    transform: translateY(-2px);
}

.btn--secondary {
    border-color: rgba(212, 160, 23, 0.65);
    background: rgba(212, 160, 23, 0.08);
    color: var(--gold-light);
}

.btn--secondary:hover {
    border-color: var(--gold-light);
    background: rgba(212, 160, 23, 0.16);
    color: var(--sand);
    transform: translateY(-2px);
}

.btn--ghost,
.btn--ghost-dark {
    border-color: rgba(232, 215, 180, 0.28);
    background: transparent;
    color: var(--sand);
}

.btn--ghost:hover,
.btn--ghost-dark:hover {
    border-color: rgba(212, 160, 23, 0.78);
    background: rgba(212, 160, 23, 0.08);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn--small {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
}

.btn:focus-visible {
    outline: 3px solid rgba(240, 206, 100, 0.9);
    outline-offset: 3px;
}

.btn:disabled,
.btn[aria-disabled="true"],
.btn[aria-busy="true"] {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
}

.exp-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
}

.exp-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--bg-card);
}

.exp-table th,
.exp-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    vertical-align: top;
}

.exp-table th {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.86rem;
}

.exp-table td {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.exp-table td:first-child {
    color: var(--sand);
    font-weight: 700;
}

.exp-disabled-link,
.exp-social-disabled {
    opacity: 1;
    cursor: default;
}

.footer__social-links .exp-social-disabled {
    border-style: dashed;
}

.testimonials__dot,
.testimonials__dot.active {
    display: grid;
    width: 24px;
    height: 24px;
    padding: 0;
    place-items: center;
    background: transparent;
    transform: none;
}

.testimonials__dot::after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.35);
    content: '';
}

.testimonials__dot.active::after {
    background: var(--gold);
    transform: scale(1.3);
}

.instr-lesson-card > .exp-card__link {
    display: inline-flex;
    margin: 14px 20px 20px;
}

.play-manifesto-btn[disabled] {
    opacity: 0.62;
    cursor: not-allowed;
}

.audio-player__btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.exp-track-pending {
    cursor: default;
}

.exp-music-nav--instruments {
    background-image: url('../photos/kollektsiya_muzykalnykh_instrumentov.webp');
}

.exp-music-nav--heritage {
    background-image: url('../photos/robert_portret_v_golovnom_ubore.webp');
}

/* Replace a legacy JPG reference that no longer exists in the asset set. */
.lessons-concerts {
    background-image: url('../photos/robert_s_muzykantom_na_prirode.webp');
}

.contact__form .exp-consent {
    margin-bottom: 18px;
}

.exp-pending-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.exp-pending-label::before {
    color: var(--gold);
    content: '◷';
}

.exp-review-banner {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.35);
    color: var(--sand);
    background: var(--bg-card);
    font-size: 0.8rem;
    text-align: center;
}

.exp-legal {
    max-width: 860px;
    margin: 0 auto;
}

.exp-legal h2 {
    margin: 42px 0 14px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.exp-legal p,
.exp-legal li {
    color: var(--text-muted);
}

.exp-error {
    display: flex;
    min-height: 72vh;
    padding: 160px 24px 100px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.exp-error__code {
    color: rgba(212, 160, 23, 0.17);
    font-family: var(--font-display);
    font-size: clamp(7rem, 20vw, 14rem);
    font-weight: 900;
    line-height: 0.8;
}

.exp-error h1 {
    margin: -18px 0 18px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.exp-error p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
}

.exp-error--illustrated {
    position: relative;
    overflow: hidden;
    min-height: 82vh;
    background: #090817;
}

.exp-error__media,
.exp-error__overlay {
    position: absolute;
    inset: 0;
}

.exp-error__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.48) saturate(0.94);
}

.exp-error__overlay {
    background: linear-gradient(180deg, rgba(8, 7, 18, 0.42), rgba(8, 7, 18, 0.28) 45%, rgba(8, 7, 18, 0.88));
}

.exp-error__content {
    position: relative;
    z-index: 2;
}

.exp-error--illustrated .exp-error__code {
    color: rgba(242, 203, 93, 0.32);
    text-shadow: 0 4px 38px rgba(0, 0, 0, 0.7);
}

.exp-error--illustrated h1,
.exp-error--illustrated p {
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.9);
}

.exp-error--illustrated p {
    color: var(--text-light);
}

/* Internal review navigator. It is not part of the public page set. */
.exp-review-page {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: var(--bg-dark);
}

.exp-review-page__header {
    max-width: 920px;
    margin: 0 auto 52px;
    text-align: center;
}

.exp-review-page__header h1 {
    margin-bottom: 20px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1.2;
}

.exp-review-page__header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.exp-review-stats {
    display: grid;
    max-width: 760px;
    margin: 32px auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.exp-review-stat {
    padding: 20px 16px;
    border: 1px solid rgba(212, 160, 23, 0.28);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.exp-review-stat strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.exp-review-stat span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.exp-review-group {
    margin-top: 70px;
}

.exp-review-group > h2 {
    margin-bottom: 12px;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.exp-review-group > p {
    max-width: 850px;
    margin-bottom: 28px;
    color: var(--text-muted);
}

.exp-review-list {
    display: grid;
    gap: 18px;
}

.exp-review-item {
    display: grid;
    padding: 26px;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.exp-review-item:hover {
    border-color: rgba(212, 160, 23, 0.55);
}

.exp-review-item h3 {
    margin: 10px 0 12px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.18rem;
}

.exp-review-item__url {
    display: block;
    overflow-wrap: anywhere;
    color: var(--gold);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, 0.45);
    text-underline-offset: 4px;
}

.exp-review-item ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
}

.exp-review-item li + li {
    margin-top: 8px;
}

.exp-review-status {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.exp-review-status--expanded {
    color: var(--gold-light);
    border: 1px solid rgba(212, 160, 23, 0.5);
    background: rgba(212, 160, 23, 0.1);
}

.exp-review-status--new {
    color: #ffd9cf;
    border: 1px solid rgba(185, 71, 45, 0.7);
    background: rgba(185, 71, 45, 0.17);
}

.exp-review-warning {
    margin-top: 52px;
}

.exp-gallery-page {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: var(--bg-dark);
}

.exp-gallery-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.exp-gallery-intro h1 {
    margin-bottom: 20px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1.2;
}

.exp-gallery-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

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

.exp-gallery-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.exp-gallery-card:hover {
    border-color: rgba(212, 160, 23, 0.62);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    transform: translateY(-6px);
}

.exp-gallery-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    background: #160f0b;
}

.exp-gallery-card__image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-gallery-card:hover .exp-gallery-card__image-link img {
    transform: scale(1.025);
}

.exp-gallery-card figcaption {
    padding: 24px;
}

.exp-gallery-card h2 {
    margin-bottom: 10px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.4;
}

.exp-gallery-card p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.exp-gallery-card__full {
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 700;
}

.exp-gallery-card__full::after {
    margin-left: 7px;
    content: '↗';
}

.exp-gallery-note {
    margin-top: 44px;
}

.exp-art-section {
    padding: 0 0 100px;
    background: var(--bg-dark);
}

.exp-art-section--alt {
    background: var(--bg-section);
}

.exp-art-banner {
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.28);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
}

.exp-art-banner__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 21 / 8;
    background: #15111e;
}

.exp-art-banner--square-source .exp-art-banner__media {
    aspect-ratio: 1 / 1;
}

.exp-art-banner--three-two-source .exp-art-banner__media {
    aspect-ratio: 3 / 2;
}

.exp-art-banner--full-image .exp-art-banner__image {
    object-fit: contain;
}

.exp-art-banner--full-image:hover .exp-art-banner__image {
    transform: none;
}

.exp-art-banner--square-source {
    max-width: 920px;
    margin-inline: auto;
}

.exp-art-banner__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(8, 7, 18, 0.38));
    content: '';
    pointer-events: none;
}

.exp-art-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.exp-art-banner:hover .exp-art-banner__image {
    transform: scale(1.012);
}

.exp-art-banner__caption {
    display: flex;
    padding: 28px 34px 30px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    background: linear-gradient(135deg, rgba(38, 27, 31, 0.98), rgba(20, 17, 35, 0.98));
}

.exp-art-banner__copy {
    max-width: 780px;
}

.exp-art-banner__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--terracotta-light, #d9785e);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.exp-art-banner__copy h2 {
    margin-bottom: 8px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.25;
}

.exp-art-banner__copy p {
    color: var(--text-muted);
    line-height: 1.65;
}

.exp-art-banner__button {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 19px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 160, 23, 0.58);
    border-radius: var(--radius);
    color: var(--gold-light);
    background: rgba(212, 160, 23, 0.05);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.exp-art-banner__button:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212, 160, 23, 0.12);
    transform: translateY(-2px);
}

.exp-hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.exp-hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-illustrated-hero .music-hero__bg-img,
.exp-illustrated-hero .events-hero__bg-img,
.exp-illustrated-hero .lessons-hero__bg-img,
.exp-illustrated-hero .sh-hero__bg-img,
.exp-illustrated-hero .contact-hero__img {
    filter: brightness(0.53) saturate(1.05);
}

.exp-blog-illustrated-hero {
    display: flex;
    min-height: 70vh;
    padding: 150px 0 90px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0d0b1a;
}

.exp-blog-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.exp-blog-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.48) saturate(1.05);
}

.exp-blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 11, 26, 0.48), rgba(13, 11, 26, 0.28) 48%, rgba(13, 11, 26, 0.95));
}

.exp-blog-illustrated-hero .container {
    position: relative;
    z-index: 2;
}

.exp-blog-illustrated-hero .blog-hero__title {
    color: var(--sand);
    text-shadow: 0 4px 36px rgba(0, 0, 0, 0.72);
}

.exp-blog-illustrated-hero .blog-hero__subtitle {
    color: var(--text-light);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.76);
}

.exp-hawk-illustrated-hero .exp-hawk-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.68) saturate(0.95);
}

.exp-hawk-illustrated-hero .hawk-overlay {
    background: radial-gradient(circle at center, rgba(8, 6, 14, 0.12) 0%, rgba(8, 6, 14, 0.7) 76%, #08060e 100%);
}

.exp-instrument-illustration {
    background: #18131c;
}

.exp-home-art {
    padding: 0 0 100px;
    background: var(--bg-dark);
}

.exp-home-art__card {
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.exp-home-art__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 21 / 8;
    background: #171220;
}

.exp-home-art__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(8, 7, 18, 0.42));
    content: '';
    pointer-events: none;
}

.exp-home-art__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.exp-home-art__card:hover .exp-home-art__image {
    transform: scale(1.012);
}

.exp-home-art__content {
    display: flex;
    padding: 34px 38px 36px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    border-top: 1px solid rgba(212, 160, 23, 0.22);
    background: linear-gradient(135deg, rgba(38, 27, 31, 0.98), rgba(20, 17, 35, 0.98));
}

.exp-home-art__copy {
    max-width: 690px;
}

.exp-home-art__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--terracotta-light, #d9785e);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.exp-home-art__copy h2 {
    margin-bottom: 9px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    line-height: 1.2;
}

.exp-home-art__copy p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.exp-home-art__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.exp-home-art__button {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.exp-home-art__button:hover {
    transform: translateY(-2px);
}

.exp-home-art__button--primary {
    color: var(--bg-dark);
    background: var(--gold);
}

.exp-home-art__button--primary:hover {
    color: var(--bg-dark);
    background: var(--gold-light);
}

.exp-home-art__button--secondary {
    border-color: rgba(212, 160, 23, 0.58);
    color: var(--gold-light);
    background: rgba(212, 160, 23, 0.05);
}

.exp-home-art__button--secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212, 160, 23, 0.12);
}

.exp-placement-principle {
    display: grid;
    margin: 44px 0 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.exp-placement-principle__item {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.exp-placement-principle__item h2 {
    margin-bottom: 12px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.exp-placement-principle__item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.exp-placement-group {
    margin-top: 72px;
}

.exp-placement-group > h2 {
    margin-bottom: 12px;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.exp-placement-group > p {
    max-width: 900px;
    margin-bottom: 28px;
    color: var(--text-muted);
    line-height: 1.7;
}

.exp-placement-list {
    display: grid;
    gap: 18px;
}

.exp-placement-card {
    display: grid;
    padding: 26px;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.exp-placement-card:hover {
    border-color: rgba(212, 160, 23, 0.55);
}

.exp-placement-card h3 {
    margin: 11px 0 12px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.17rem;
}

.exp-placement-card__url {
    display: block;
    overflow-wrap: anywhere;
    color: var(--gold);
    font-size: 0.86rem;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, 0.45);
    text-underline-offset: 4px;
}

.exp-placement-card__body {
    display: grid;
    gap: 14px;
}

.exp-placement-card__body p {
    color: var(--text-muted);
    line-height: 1.68;
}

.exp-placement-card__body strong {
    color: var(--sand);
}

.exp-placement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exp-placement-badge {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.exp-placement-badge--hero {
    color: #ffd9cf;
    border: 1px solid rgba(185, 71, 45, 0.72);
    background: rgba(185, 71, 45, 0.17);
}

.exp-placement-badge--banner {
    color: var(--gold-light);
    border: 1px solid rgba(212, 160, 23, 0.52);
    background: rgba(212, 160, 23, 0.1);
}

.exp-placement-badge--placeholder {
    color: #d8d1ff;
    border: 1px solid rgba(139, 127, 184, 0.65);
    background: rgba(139, 127, 184, 0.15);
}

.exp-placement-badge--keep {
    color: #c9e8d1;
    border: 1px solid rgba(91, 145, 105, 0.65);
    background: rgba(91, 145, 105, 0.14);
}

.exp-placement-badge--priority {
    color: var(--bg-dark);
    background: var(--gold);
}

.exp-placement-samples {
    display: grid;
    margin-top: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.exp-placement-samples a {
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius);
}

.exp-placement-samples img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ============================================================
   DOCUMENTARY PHOTO CROPS
   Keep Robert's full head inside every fixed-ratio photo frame.
   These rules affect photographs only; illustrated assets are untouched.
   ============================================================ */

img[src*="robert_vystuplenie_s_fleytoy_pana_v_zale"] {
    object-position: center top !important;
    transform-origin: center top;
}

img[src*="robert_vystuplenie_s_fioletovym_svetom"] {
    object-position: center 22% !important;
    transform-origin: center top;
}

img[src*="robert_igra_na_charange"] {
    object-position: center 12% !important;
    transform-origin: center top;
}

img[src*="robert_vystuplenie_s_logotipom_rrk"] {
    object-position: center top !important;
    transform-origin: center top;
}

/* ============================================================
   ABOUT HERO PORTRAIT COMPOSITION
   On wide screens the portrait occupies its own visual field on the
   right, leaving a calm text field on the left. On phones the full
   portrait stays central while the copy sits below Robert's eyes.
   ============================================================ */

@media (min-width: 769px) {
    .about-hero__bg {
        background: #090714;
    }

    .about-hero__bg-img {
        position: absolute;
        inset: 0 0 0 auto;
        width: 58%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center 25%;
        filter: brightness(0.72) saturate(1.15);
    }

    .about-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(13, 11, 26, 0.42) 0%,
                rgba(13, 11, 26, 0.08) 42%,
                rgba(13, 11, 26, 0.2) 70%,
                rgba(13, 11, 26, 0.96) 100%),
            linear-gradient(90deg,
                #0d0b1a 0%,
                rgba(13, 11, 26, 0.98) 28%,
                rgba(13, 11, 26, 0.82) 47%,
                rgba(13, 11, 26, 0.22) 72%,
                rgba(13, 11, 26, 0.4) 100%);
    }

    .about-hero__content {
        width: min(100%, 1200px);
        max-width: none;
        padding: 60px min(44%, 526px) 60px 24px;
        text-align: left;
    }

    .about-hero__title {
        max-width: 650px;
    }

    .about-hero__subtitle,
    .about-hero__epigraph {
        max-width: 610px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 680px;
        align-items: flex-end;
    }

    .about-hero__bg-img {
        object-position: center center;
        filter: brightness(0.58) saturate(1.15);
    }

    .about-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(13, 11, 26, 0.35) 0%,
                rgba(13, 11, 26, 0.08) 34%,
                rgba(13, 11, 26, 0.48) 55%,
                rgba(13, 11, 26, 0.96) 78%,
                #0d0b1a 100%),
            linear-gradient(90deg,
                rgba(13, 11, 26, 0.4) 0%,
                transparent 22%,
                transparent 78%,
                rgba(13, 11, 26, 0.4) 100%);
    }

    .about-hero__content {
        width: 100%;
        max-width: 500px;
        padding: 0 24px 52px;
    }
}

.about-story__photo-frame img[src*="robert_vystuplenie_s_fleytoy_pana"] {
    object-position: center top !important;
    transform-origin: center top;
}

/* The source Hawk Spirit mark is not circular: clipping it to a circle cuts
   off the wordmark. Keep the complete transparent logo visible in the hero. */
.exp-hawk-illustrated-hero .hawk-logo-hero {
    width: 148px;
    height: auto;
    max-height: none;
    object-fit: contain;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 0 18px rgba(212, 160, 23, 0.24));
}

.blog-card .blog-card__img > .blog-badge {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: auto;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 32px);
}

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

    .exp-split,
    .exp-form-wrap {
        grid-template-columns: 1fr;
    }

    .exp-split--reverse .exp-split__media {
        order: 0;
    }
}

@media (max-width: 720px) {
    .exp-section {
        padding: 72px 0;
    }

    .exp-home-art {
        padding-bottom: 72px;
    }

    .exp-art-section {
        padding-bottom: 72px;
    }

    .exp-art-banner__media {
        aspect-ratio: 4 / 5;
    }

    .exp-art-banner--square-source .exp-art-banner__media {
        aspect-ratio: 1 / 1;
    }

    .exp-art-banner--portrait-mobile .exp-art-banner__media {
        aspect-ratio: 205 / 256;
    }

    .exp-art-banner__caption {
        padding: 24px 21px 26px;
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .exp-art-banner__button {
        width: 100%;
    }

    .exp-blog-illustrated-hero {
        min-height: 74vh;
        padding: 125px 0 70px;
    }

    .exp-home-art__media {
        aspect-ratio: 4 / 5;
    }

    .exp-home-art__content {
        padding: 26px 22px 28px;
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
    }

    .exp-home-art__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .exp-home-art__button {
        width: 100%;
    }

    .exp-grid,
    .exp-grid--2,
    .exp-grid--4,
    .exp-facts,
    .exp-process,
    .exp-lead-form {
        grid-template-columns: 1fr;
    }

    .exp-field--full,
    .exp-consent,
    .exp-form-actions,
    .exp-form-status {
        grid-column: auto;
    }

    .exp-form-wrap {
        padding: 26px 20px;
    }

    .exp-actions .btn {
        width: 100%;
        text-align: center;
    }

    .exp-review-page {
        padding-top: 110px;
    }

    .exp-review-stats,
    .exp-review-item,
    .exp-gallery-grid,
    .exp-placement-principle,
    .exp-placement-card,
    .exp-placement-samples {
        grid-template-columns: 1fr;
    }

    .exp-review-item {
        padding: 22px 18px;
        gap: 18px;
    }

    .exp-gallery-page {
        padding-top: 110px;
    }
}

/* ============================================================
   COMPLETE BLOG ARTICLES
   Long-form reading pages keep the approved dark/gold visual language while
   giving Robert's oral stories a calm, legible editorial layout.
   ============================================================ */

.exp-article-hero {
    position: relative;
    min-height: min(720px, 76vh);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #090714;
}

.exp-article-hero__media,
.exp-article-hero__media picture {
    position: absolute;
    inset: 0;
    display: block;
}

.exp-article-hero__image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
}

.exp-article-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 7, 20, 0.46) 0%, rgba(9, 7, 20, 0.2) 35%, rgba(9, 7, 20, 0.96) 100%),
        linear-gradient(90deg, rgba(9, 7, 20, 0.7), transparent 62%, rgba(9, 7, 20, 0.34));
}

.exp-article-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 72px;
}

.exp-article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

.exp-article-breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
}

.exp-article-breadcrumb a:hover {
    color: var(--gold-light);
}

.exp-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.exp-article-meta > * + * {
    position: relative;
}

.exp-article-meta > * + *::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--terracotta);
}

.exp-article-hero h1 {
    max-width: 1040px;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4.7rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-wrap: balance;
    text-shadow: 0 4px 36px rgba(0, 0, 0, 0.72);
}

.exp-article-section {
    padding: 88px 0 100px;
    background: var(--bg-dark);
}

.exp-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(220px, 280px);
    justify-content: center;
    align-items: start;
    gap: 76px;
}

.exp-article-body {
    min-width: 0;
    color: #d8d4e3;
    font-size: 1.1rem;
    line-height: 1.86;
}

.exp-article-body > *:first-child {
    margin-top: 0;
}

.exp-article-lead {
    margin-bottom: 30px;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.6;
}

.exp-article-source {
    display: grid;
    gap: 5px;
    margin: 0 0 48px;
    padding: 18px 20px;
    border: 1px solid rgba(212, 160, 23, 0.24);
    border-radius: var(--radius);
    background: rgba(212, 160, 23, 0.055);
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.exp-article-source strong {
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.exp-article-body h2 {
    scroll-margin-top: 105px;
    margin: 64px 0 22px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    line-height: 1.32;
    text-wrap: balance;
}

.exp-article-body p {
    margin: 0 0 24px;
}

.exp-article-body blockquote {
    position: relative;
    margin: 44px 0;
    padding: 28px 30px 28px 36px;
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: linear-gradient(90deg, rgba(212, 160, 23, 0.1), rgba(212, 160, 23, 0.025));
    color: var(--sand);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-style: italic;
    line-height: 1.62;
}

.exp-article-figure {
    margin: 48px 0 56px;
}

.exp-article-picture {
    display: block;
}

.exp-article-figure img {
    width: 100%;
    max-height: 660px;
    object-fit: contain;
    object-position: center top !important;
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius);
    background: #090714;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.exp-article-figure--wide img {
    max-height: none;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.exp-article-figure figcaption {
    padding: 12px 4px 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.exp-article-notice {
    padding: 18px 20px;
    border-left: 3px solid var(--terracotta);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: rgba(194, 69, 45, 0.1);
    color: var(--sand);
    font-size: 0.95rem;
}

.exp-article-author {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 72px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.exp-article-author img {
    width: 96px;
    height: 116px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: var(--radius);
}

.exp-article-author span {
    color: var(--terracotta);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.exp-article-author h2 {
    margin: 3px 0 5px;
    font-size: 1.35rem;
}

.exp-article-author p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.exp-article-aside {
    position: sticky;
    top: 100px;
}

.exp-article-aside__card {
    padding: 24px;
    border: 1px solid rgba(212, 160, 23, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.025);
}

.exp-article-aside__card > strong {
    display: block;
    margin-bottom: 15px;
    color: var(--sand);
    font-family: var(--font-display);
    font-size: 1rem;
}

.exp-article-toc {
    display: grid;
    gap: 11px;
    margin: 0;
    padding-left: 20px;
    color: var(--terracotta);
    font-size: 0.85rem;
    line-height: 1.5;
}

.exp-article-toc a {
    color: var(--text-muted);
}

.exp-article-toc a:hover {
    color: var(--gold-light);
}

.exp-article-aside__back {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.85rem;
}

.exp-article-cta {
    padding: 72px 0;
    background: linear-gradient(120deg, #171222, #0d0b1a 62%);
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.exp-article-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.exp-article-cta__inner > div {
    max-width: 760px;
}

.exp-article-cta span,
.exp-related-heading span {
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.exp-article-cta h2,
.exp-related-heading h2 {
    margin: 6px 0 10px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.exp-article-cta p {
    margin: 0;
    color: var(--text-muted);
}

.exp-related-section {
    padding: 88px 0 104px;
    background: var(--bg-section);
}

.exp-related-heading {
    margin-bottom: 34px;
}

.exp-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.exp-related-card {
    display: grid;
    grid-template-columns: minmax(170px, 42%) 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    background: var(--bg-card);
}

.exp-related-card__media {
    min-height: 230px;
    overflow: hidden;
}

.exp-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.exp-related-card:hover .exp-related-card__media img {
    transform: scale(1.035);
}

.exp-related-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
}

.exp-related-card__body > span {
    color: var(--terracotta);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.exp-related-card h3 {
    margin: 9px 0 20px;
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1.45;
}

.exp-related-card h3 a {
    color: var(--sand);
}

.exp-related-card .exp-card__link {
    margin-top: auto;
}

@media (max-width: 980px) {
    .exp-article-layout {
        grid-template-columns: minmax(0, 760px);
        gap: 46px;
    }

    .exp-article-aside {
        position: static;
        order: -1;
    }

    .exp-article-toc {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
    }

    .exp-related-card {
        grid-template-columns: 1fr;
    }

    .exp-related-card__media {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 720px) {
    .exp-article-hero {
        min-height: 660px;
    }

    .exp-article-hero__content {
        padding-top: 132px;
        padding-bottom: 50px;
    }

    .exp-article-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .exp-article-meta {
        gap: 8px 19px;
        font-size: 0.7rem;
    }

    .exp-article-meta > * + *::before {
        left: -11px;
    }

    .exp-article-section {
        padding: 58px 0 72px;
    }

    .exp-article-body {
        font-size: 1.02rem;
        line-height: 1.78;
    }

    .exp-article-body h2 {
        margin-top: 50px;
    }

    .exp-article-body blockquote {
        margin: 34px 0;
        padding: 22px 20px 22px 25px;
    }

    .exp-article-toc {
        grid-template-columns: 1fr;
    }

    .exp-article-author {
        grid-template-columns: 76px 1fr;
        gap: 18px;
    }

    .exp-article-author img {
        width: 76px;
        height: 96px;
    }

    .exp-article-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

    .exp-article-cta__inner .btn {
        width: 100%;
        text-align: center;
    }

    .exp-related-grid {
        grid-template-columns: 1fr;
    }
}
