.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    background: #fff;
    padding: 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #ecfdf8;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item__body {
    padding: 0 1.5rem 1.35rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.65;
}

.glossary-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .glossary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .glossary-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.glossary-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.glossary-card:hover {
    transform: translateY(-3px);
    border-color: #6ee7c7;
    box-shadow: 0 16px 36px -18px rgb(5 150 105 / 0.35);
}

.glossary-card__term {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.glossary-card__text {
    margin: 0;
    flex: 1;
    color: #475569;
    line-height: 1.55;
}

.glossary-card__more {
    margin-top: 1rem;
    font-weight: 700;
    color: #059669;
}

.glossary-hub-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .glossary-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.glossary-letter {
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #059669;
}

.glossary-term-body p {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #334155;
}

.glossary-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.glossary-related a {
    display: inline-flex;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #ecfdf8;
    color: #047857;
    font-weight: 700;
    text-decoration: none;
}

.glossary-related a:hover {
    background: #d1fae5;
}
