/*Hero Home section*/

.ajt-hero {
    position: relative;
    height: 100dvh;
    max-height: 820px;
    min-height: 560px;
    overflow: hidden;
}

.ajt-btn-cta:hover,
.ajt-btn-cta:focus-visible {
    background: #98422a;
}

.ajt-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(28, 27, 25, 0.4);
    color: #FAF8F5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
}

.ajt-hero-arrow:hover,
.ajt-hero-arrow:focus-visible {
    background: rgba(28, 27, 25, 0.65);
}

.ajt-hero-arrow-prev { left: clamp(0.5rem, 2vw, 2rem); }
.ajt-hero-arrow-next { right: clamp(0.5rem, 2vw, 2rem); }

.ajt-hero-arrow svg {
    width: 18px;
    height: 18px;
}

.ajt-hero-track {
    position: absolute;
    inset: 0;
}

.ajt-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1s ease;
}

.ajt-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.ajt-hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 6s ease;
}

.ajt-hero-slide.is-active .ajt-hero-slide-bg {
    transform: scale(1);
}

.ajt-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(28,27,25,0.55) 0%, rgba(28,27,25,0.7) 55%, rgba(28,27,25,0.85) 100%);
}

.ajt-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ajt-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8C9B8;
    margin: 0 0 1rem;
}

.ajt-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 6vw, 4.6rem);
    font-weight: 700;
    color: #FAF8F5;
    line-height: 1.15;
    white-space: nowrap;
    margin: 0 0 1.25rem;
}

.ajt-hero-slide.is-active .ajt-word {
    animation: ajtWordIn 0.7s ease forwards;
    animation-delay: calc(var(--d, 0) * 90ms + 200ms);
}

@keyframes ajtWordIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ajt-highlight {
    color: #E8935F;
}

.ajt-hero-subtext {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #E5E1DA;
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
}

.ajt-hero-slide.is-active .ajt-hero-subtext {
    animation: ajtWordIn 0.7s ease forwards;
    animation-delay: 500ms;
}

.ajt-hero-actions {
    position: absolute;
    left: 50%;
    bottom: clamp(3.5rem, 9vh, 5rem);
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem;
}

.ajt-btn-text-bottom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.ajt-btn-hero:hover .ajt-btn-text-top,
.ajt-btn-hero:focus-visible .ajt-btn-text-top,
.ajt-btn-hero:hover .ajt-btn-text-bottom,
.ajt-btn-hero:focus-visible .ajt-btn-text-bottom {
    transform: translateY(-100%);
}

.ajt-hero-secondary-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: #FAF8F5;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(250,248,245,0.5);
}

.ajt-hero-secondary-link:hover,
.ajt-hero-secondary-link:focus-visible {
    text-decoration-color: #FAF8F5;
}

.ajt-hero-dots {
    position: absolute;
    bottom: clamp(1.25rem, 3vh, 1.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.6rem;
}

.ajt-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(250,248,245,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ajt-hero-dot.is-active {
    background: #FAF8F5;
    transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
    .ajt-word,
    .ajt-hero-subtext {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .ajt-hero-slide-bg {
        transition: none;
    }
}

@media (max-width: 640px) {
    .ajt-hero {
        height: 78vh;
        min-height: 460px;
        max-height: none;
    }

    .ajt-hero-title {
        font-size: clamp(1.5rem, 8vw, 2.1rem);
        white-space: normal;
        line-height: 1.2;
    }

    .ajt-hero-subtext {
        font-size: 0.95rem;
    }

    .ajt-hero-actions {
        flex-direction: column;
        gap: 0.9rem;
        bottom: clamp(4rem, 12vh, 5.5rem);
    }
    .ajt-hero-arrow {
        width: 36px;
        height: 36px;
        top: auto;
        bottom: 1.1rem;
        transform: none;
    }
    
    .ajt-hero-arrow-prev { left: 1rem; }
    .ajt-hero-arrow-next { right: 1rem; }
    
    .ajt-hero-arrow svg {
        width: 15px;
        height: 15px;
    }
}

/*--------------------------------------------------------------*/

/* Category section*/

.ajt-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 1.5rem);
}

.ajt-categories-intro {
    max-width: 620px;
    margin: 0 0 clamp(2.5rem, 6vw, 4rem);
}

.ajt-cat-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4rem);
}

.ajt-cat-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ajt-cat-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ajt-cat-row-reverse {
    direction: rtl;
}

.ajt-cat-row-reverse .ajt-cat-text,
.ajt-cat-row-reverse .ajt-cat-media {
    direction: ltr;
}

.ajt-cat-media {
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
}

.ajt-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ajt-cat-row:hover .ajt-cat-media img {
    transform: scale(1.05);
}

.ajt-cat-index {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #6b6762;
    margin-bottom: 0.75rem;
}

.ajt-cat-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.9rem;
}

.ajt-cat-desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: #555049;
    line-height: 1.65;
    margin: 0 0 1.4rem;
    max-width: 42ch;
}

.ajt-cat-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.ajt-cat-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ajt-cat-link:hover::after,
.ajt-cat-link:focus-visible::after {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
    .ajt-cat-row {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .ajt-cat-media img {
        transition: none;
    }
}

@media (max-width: 780px) {
    .ajt-cat-row,
    .ajt-cat-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .ajt-cat-media {
        aspect-ratio: 16 / 10;
    }

    .ajt-cat-desc {
        max-width: none;
    }
}


/*---------------------------------------------------------------------*/

/*Credibility section*/



.ajt-credibility {
    background: var(--color-taupe, #D8CFC3);
    background: #EFEAE3;
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 1.5rem);
}

.ajt-credibility-intro {
    max-width: 1200px;
    margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.ajt-credibility-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.ajt-credibility-timeline::before {
    content: "";
    position: absolute;
    top: 0.20rem;
    left: 0;
    right: 0;
    height: 1px;
    background: #C4B9AA;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s ease;
}

.ajt-credibility-timeline.is-visible::before {
    transform: scaleX(1);
}

.ajt-credibility-step {
    position: relative;
    padding-top: 2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ajt-credibility-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ajt-credibility-step:nth-child(1) { transition-delay: 0.1s; }
.ajt-credibility-step:nth-child(2) { transition-delay: 0.25s; }
.ajt-credibility-step:nth-child(3) { transition-delay: 0.4s; }
.ajt-credibility-step:nth-child(4) { transition-delay: 0.55s; }

.ajt-credibility-num {
    position: absolute;
    top: -0.15rem;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    font-size: 0;
}

.ajt-credibility-num::after {
    content: attr(data-label);
}

.ajt-credibility-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.6rem;
}

.ajt-credibility-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #5C564D;
    line-height: 1.6;
    margin: 0;
    max-width: 30ch;
}

.ajt-credibility-close {
    max-width: 1200px;
    margin: clamp(3rem, 7vw, 4.5rem) auto 0;
    padding-top: clamp(2rem, 5vw, 2.5rem);
    border-top: 1px solid #C4B9AA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ajt-credibility-close-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
    max-width: 480px;
}

.ajt-btn-credibility {
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.8rem;
    overflow: hidden;
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .ajt-credibility-timeline::before,
    .ajt-credibility-step {
        transition: none;
        opacity: 1;
        transform: none;
        transform: scaleX(1);
    }
}

@media (max-width: 780px) {
    .ajt-credibility-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 1.5rem;
    }

    .ajt-credibility-timeline::before {
        top: 0;
        left: 0.35rem;
        right: auto;
        width: 1px;
        height: 100%;
        transform: scaleY(0);
        transform-origin: top;
    }

    .ajt-credibility-timeline.is-visible::before {
        transform: scaleY(1);
    }

    .ajt-credibility-step {
        padding-top: 0;
        padding-left: 1.5rem;
    }

    .ajt-credibility-num {
        left: -1.5rem;
        top: 0.3rem;
    }

    .ajt-credibility-desc {
        max-width: none;
    }

    .ajt-credibility-close {
        flex-direction: column;
        align-items: flex-start;
    }
}


/*-----------------------------------------------------------*/

/*Spotlight section*/



.ajt-spotlight {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 1.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.ajt-spotlight-media {
    position: relative;
}

.ajt-spotlight-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
}

.ajt-spotlight-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ajt-spotlight-img.is-active {
    opacity: 1;
}

.ajt-spotlight-facts {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    gap: 1.5rem;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(4px);
    padding: 0.9rem 1.25rem;
    border-radius: 4px;
}

.ajt-spotlight-fact-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
}

.ajt-spotlight-fact-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #6B655C;
    margin-top: 0.15rem;
}

.ajt-spotlight-dots {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
}

.ajt-spotlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-taupe, #D8CFC3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.ajt-spotlight-dot.is-active {
    background: var(--color-accent);
    transform: scale(1.5);
}

.ajt-spotlight-text {
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 12vh, 7rem);
    padding-top: 0.5rem;
}

.ajt-spotlight-block {
    opacity: 0.35;
    transition: opacity 0.5s ease;
}

.ajt-spotlight-block.is-active {
    opacity: 1;
}

.ajt-spotlight-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.ajt-spotlight-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.9rem;
}

.ajt-spotlight-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #5C564D;
    line-height: 1.65;
    max-width: 44ch;
    margin: 0;
}

.ajt-btn-spotlight {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    border: 1px solid var(--color-text);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
}

.ajt-btn-spotlight-fill {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.ajt-btn-spotlight:hover .ajt-btn-spotlight-fill,
.ajt-btn-spotlight:focus-visible .ajt-btn-spotlight-fill {
    transform: translate(-50%, -50%) scale(18);
}

.ajt-btn-spotlight-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text);
    transition: color 0.4s ease;
    position: relative;
}

.ajt-btn-spotlight:hover .ajt-btn-spotlight-label,
.ajt-btn-spotlight:focus-visible .ajt-btn-spotlight-label {
    color: #FAF8F5;
}

@media (prefers-reduced-motion: reduce) {
    .ajt-spotlight-img,
    .ajt-spotlight-block,
    .ajt-btn-spotlight-fill,
    .ajt-btn-spotlight-label {
        transition: none;
    }
    .ajt-spotlight-block {
        opacity: 1;
    }
}

@media (min-width: 981px) {
    .ajt-spotlight-media {
        position: sticky;
        top: 6rem;
        align-self: start;
    }
    .ajt-spotlight-dots {
        display: flex;
    }
}

@media (max-width: 980px) {
    .ajt-spotlight {
        grid-template-columns: 1fr;
    }
    .ajt-spotlight-frame {
        aspect-ratio: 16 / 11;
    }
    .ajt-spotlight-text {
        gap: 2.5rem;
        padding-top: 2rem;
    }
    .ajt-spotlight-block {
        opacity: 1;
    }
}


/*-----------------------------------------------------------*/

/*location-sections*/


.ajt-locations {
    max-width: none;
    margin: 0;
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 1.5rem);
    background: linear-gradient(160deg, #EFEAE3 0%, #E3DCD1 55%, #D8CFC3 100%);
}

.ajt-locations-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ajt-locations-intro {
    max-width: 620px;
    margin: 0 0 clamp(2.5rem, 6vw, 3.5rem);
}

.ajt-locations-body {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
}

.ajt-locations-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-self: start;
}

.ajt-locations-tab {
    text-align: left;
    background: none;
    border: none;
    border-left: 2px solid transparent;
    padding: 0.6rem 0 0.6rem 1.1rem;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 500;
    color: #A39C90;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.ajt-locations-tab.is-active {
    color: var(--color-text);
    border-left-color: var(--color-accent);
}

.ajt-locations-tab:hover,
.ajt-locations-tab:focus-visible {
    color: var(--color-text);
}

.ajt-locations-panels {
    position: relative;
    min-height: 260px;
}

.ajt-locations-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.ajt-locations-panel.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.ajt-locations-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #4A453D;
    line-height: 1.65;
    max-width: 46ch;
    margin: 0 0 1.75rem;
}

.ajt-locations-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: 1.25rem 0;
    border-top: 1px solid var(--color-taupe, #D8CFC3);
    border-bottom: 1px solid var(--color-taupe, #D8CFC3);
    margin-bottom: 1.75rem;
}

.ajt-locations-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ajt-locations-stat span {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8A8377;
}

.ajt-locations-stat strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

.ajt-locations-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.ajt-locations-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ajt-locations-link:hover::after,
.ajt-locations-link:focus-visible::after {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
    .ajt-locations-panel {
        transition: none;
    }
}

@media (max-width: 780px) {
    .ajt-locations-body {
        grid-template-columns: 1fr;
    }

    .ajt-locations-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .ajt-locations-tab {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 0.3rem 0 0.6rem;
        font-size: 1.1rem;
    }

    .ajt-locations-tab.is-active {
        border-bottom-color: var(--color-accent);
    }

    .ajt-locations-stats {
        gap: 1.5rem;
    }
}


/*-----------------------------------------------------------*/

/*FAQ Section*/


.ajt-faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 1.5rem);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.ajt-faq-intro {
    position: sticky;
    top: 6rem;
}

.ajt-faq-list {
    display: flex;
    flex-direction: column;
}

.ajt-faq-item {
    border-bottom: 1px solid var(--color-taupe, #D8CFC3);
}

.ajt-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
}

.ajt-faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ajt-faq-icon::before,
.ajt-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-accent);
    transition: transform 0.3s ease;
}

.ajt-faq-icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.ajt-faq-icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.ajt-faq-question[aria-expanded="true"] .ajt-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.ajt-faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.ajt-faq-question[aria-expanded="true"] + .ajt-faq-answer-wrap {
    grid-template-rows: 1fr;
}

.ajt-faq-answer {
    overflow: hidden;
}

.ajt-faq-answer p {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: #5C564D;
    line-height: 1.65;
    max-width: 52ch;
    margin: 0 0 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .ajt-faq-answer-wrap,
    .ajt-faq-icon::before,
    .ajt-faq-icon::after {
        transition: none;
    }
}

@media (max-width: 900px) {
    .ajt-faq {
        grid-template-columns: 1fr;
    }
    .ajt-faq-intro {
        position: static;
    }
}
