.yanodeudas-faq-item {
    display: flex;
    min-height: 62px;
    padding: 1px 25px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    box-sizing: border-box;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    overflow: hidden;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.yanodeudas-faq-item.is-open {
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.yanodeudas-faq-item__trigger {
    display: flex;
    width: 100%;
    min-height: 60px;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.yanodeudas-faq-item__question {
    color: #1d293d;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.yanodeudas-faq-item__icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.yanodeudas-faq-item.is-open .yanodeudas-faq-item__icon {
    transform: rotate(180deg);
}

.yanodeudas-faq-item__icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.yanodeudas-faq-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    transition: grid-template-rows 0.28s ease;
}

.yanodeudas-faq-item.is-open .yanodeudas-faq-item__panel {
    grid-template-rows: 1fr;
}

.yanodeudas-faq-item__panel-inner {
    overflow: hidden;
}

.yanodeudas-faq-item__answer {
    margin: 0;
    padding: 0 0 22px;
    color: #45556c;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.15px;
}

@media (max-width: 767px) {
    .yanodeudas-faq-item {
        padding: 1px 18px;
        border-radius: 14px;
    }

    .yanodeudas-faq-item__trigger {
        min-height: 58px;
        gap: 12px;
    }

    .yanodeudas-faq-item__question {
        font-size: 14px;
        line-height: 20px;
    }

    .yanodeudas-faq-item__answer {
        padding-bottom: 18px;
        font-size: 14px;
        line-height: 21px;
    }
}
