/* Wrapper */
.starlight-testimonials-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* List: single vertical column */
.starlight-testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

/* Card */
.starlight-testimonial-card {
    background: #151515;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f9fafb;
    box-sizing: border-box;
}

/* Title: centered and large */
.starlight-testimonial-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Meta (date centered) */
.starlight-testimonial-meta {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 4px;
    text-align: center;
}

/* Content */
.starlight-testimonial-content {
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: center;
}

/* Images inside content: centered */
.starlight-testimonial-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 16px auto;
}

/* Figures inside content */
.starlight-testimonial-content figure {
    margin: 16px auto;
    text-align: center;
}

/* Links */
.starlight-testimonial-content a {
    color: #e5e7eb;
    text-decoration: underline;
}

.starlight-testimonial-content a:hover {
    text-decoration: none;
}

/* Pagination: centered */
.starlight-testimonials-pagination {
    text-align: center;
    margin-top: 26px;
}

/* Pagination buttons */
.starlight-page-number {
    display: inline-block;
    padding: 7px 12px;
    margin: 0 4px;
    border-radius: 999px;
    border: 1px solid rgba(249, 250, 251, 0.25);
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease, color 0.2s ease, border-color 0.2s ease;
    color: #e5e7eb;
}

.starlight-page-number:hover {
    background: rgba(249, 250, 251, 0.08);
    transform: translateY(-1px);
}

.starlight-page-current {
    background: #f3f4f6;
    color: #000000;
    border-color: #f3f4f6;
}

/* Loading state */
.starlight-testimonials-wrapper.starlight-is-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
    .starlight-testimonial-card {
        padding: 18px;
        border-radius: 14px;
    }

    .starlight-testimonial-title {
        font-size: 1.6rem;
    }
}
