.buyer-question-library {
    border-top: 1px solid var(--line);
}

.buyer-question-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.buyer-question-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--cyan);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.buyer-question-card:hover {
    color: var(--ink);
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.buyer-question-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.buyer-question-card span {
    display: flex;
    min-height: 190px;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.buyer-question-card small {
    color: #087f8c;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.buyer-question-card strong {
    margin-top: 10px;
    color: var(--navy);
    font: 700 1.12rem/1.25 var(--display);
}

.buyer-question-card em {
    margin-top: auto;
    padding-top: 18px;
    color: var(--orange-dark);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 800;
}

.home-question-links .section-heading h2,
.home-question-links .section-heading p {
    color: #fff;
}

.question-text-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.question-text-grid a {
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 18px 20px;
    color: #dce8f1;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 750;
    line-height: 1.3;
}

.question-text-grid a:hover {
    color: #fff;
    background: rgba(19, 184, 200, 0.1);
}

.buyer-question-prose .direct-answer h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

@media (max-width: 1000px) {
    .buyer-question-grid,
    .question-text-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .buyer-question-grid,
    .question-text-grid {
        grid-template-columns: 1fr;
    }

    .buyer-question-card span {
        min-height: 0;
    }

    .question-text-grid a {
        min-height: 68px;
    }
}
