.pacfaq {
    clear: both;
    max-width: 920px;
    margin: 34px auto 28px;
    padding: 24px 16px 8px;
}

.pacfaq__title {
    margin: 0 0 16px;
    color: #222;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.pacfaq__item {
    border-bottom: 1px solid #e9e9e9;
}

.pacfaq__item:first-child {
    border-top: 1px solid #e9e9e9;
}

.pacfaq__question {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.pacfaq__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 56px;
    padding: 15px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #222;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.pacfaq__toggle:focus-visible {
    outline: 2px solid #ca366f;
    outline-offset: 3px;
}

.pacfaq__question-text {
    flex: 1;
}

.pacfaq__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.pacfaq__icon::before,
.pacfaq__icon::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
    background: #ca366f;
    content: "";
}

.pacfaq__icon::after {
    transform: rotate(90deg);
    transition: transform 160ms ease;
}

.pacfaq__item--open .pacfaq__icon::after {
    transform: rotate(0deg);
}

.pacfaq__answer {
    padding: 0 4px 18px;
    color: #444;
    font-size: 16px;
    line-height: 1.65;
}

.pacfaq__answer > *:first-child {
    margin-top: 0;
}

.pacfaq__answer > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .pacfaq {
        margin-top: 24px;
        padding: 18px 12px 6px;
    }

    .pacfaq__title {
        font-size: 21px;
    }

    .pacfaq__question {
        font-size: 16px;
    }

    .pacfaq__toggle {
        min-height: 54px;
    }
}
