/* Shared styles for technology pages */




.faq-section {
    padding-top: var(--gb-space-section);
}

    .faq-section .main-title {
        margin-bottom: 2rem;
    }

.faq-section__intro {
    max-width: 84ch;
    margin: 0 auto 1.2rem;
    color: #3b5566;
    font-size: clamp(0.95rem, 1.02vw, 1.04rem);
    line-height: 1.6;
    text-align: center;
}

.faq {
    margin: 0 auto;
}

.faq__item {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 12px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    overflow: hidden;
    cursor: pointer;
}

.faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #163446;
    font-weight: 500;
    line-height: 1.35;
}

    .faq__q::-webkit-details-marker {
        display: none;
    }

.faq__qtext {
    flex: 1;
}

.faq__q::after {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
}

details[open] .faq__q::after {
    transform: rotate(45deg);
}

.faq__a {
    margin-top: 8px;
    color: #4b5b68;
    line-height: 1.55;
    animation: faq-fade 0.18s ease;
}

.faq__body {
    overflow: hidden;
    will-change: height;
}

@media (prefers-reduced-motion: reduce) {
    .faq__body {
        will-change: auto;
    }
}

@keyframes faq-fade {
    from {
        opacity: 0;
        transform: translateY(-2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 999px) {
    .faq-section .main-title {
        margin-bottom: 1.25rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-section__intro {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 575px) {
    .faq__item {
        padding: 12px 14px;
    }
}
