.tfqaw-wrap,
.tfqaw-wrap * {
    box-sizing: border-box;
}

.tfqaw-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.tfqaw-section {
    width: 100%;
    overflow: visible;
}

.tfqaw-section + .tfqaw-section {
    margin-top: 34px;
}

.tfqaw-divider {
    display: block;
    width: 80%;
    height: 2px;
    margin: 0 auto 28px;
    background: #d71920;
}

.tfqaw-section-title {
    margin: 0 0 24px;
    color: #d71920;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.tfqaw-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 8px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.tfqaw-item {
    width: 100%;
    min-width: 0;
    margin: 0 !important;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
}

.tfqaw-header {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 5px;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
    white-space: normal !important;
    overflow: visible;
}

.tfqaw-header:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -2px;
}

.tfqaw-question {
    flex: 1 1 auto;
    min-width: 0;
    display: block;
    color: #d71920;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    white-space: normal !important;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    word-break: normal;
}

.tfqaw-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #999;
    font-size: 12px;
    line-height: 1;
    margin-top: 0;
}

.tfqaw-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.tfqaw-icon-open {
    display: none;
}

.tfqaw-item.is-open .tfqaw-icon-closed {
    display: none;
}

.tfqaw-item.is-open .tfqaw-icon-open {
    display: inline-flex;
}

.tfqaw-content {
    color: #333;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.tfqaw-content-inner {
    padding: 0 12px 12px;
}

.tfqaw-content p {
    margin-top: 0;
    margin-bottom: .7em;
}

.tfqaw-content p:last-child {
    margin-bottom: 0;
}

.tfqaw-content a {
    color: #d71920;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .tfqaw-grid {
        grid-template-columns: 1fr;
    }
}
