/* ============================================
   Individual Testimonial Page (Full View)
   ============================================ */

.testimonial-full-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

/* Back Link */
.testimonial-back-link {
    margin-bottom: 2rem;
}

.testimonial-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #442d72;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.testimonial-back-link a:hover {
    color: #6B46C1;
}

.testimonial-back-link a svg {
    flex-shrink: 0;
}

/* Content area */
.testimonial-full-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Main card */
.testimonial-full-card {
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 60%, #f8f4ff 100%);
    border-radius: 20px;
    padding: 3rem 3.5rem;
    box-shadow: 0 8px 30px rgba(68, 45, 114, 0.12);
    border: 1px solid #ede5f7;
    text-align: center;
    position: relative;
}

@media (max-width: 767px) {
    .testimonial-full-card {
        padding: 2rem 1.5rem;
    }
}

/* Quote icon */
.testimonial-full-quote-icon {
    color: #c4b0e8;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.testimonial-full-quote-icon svg {
    width: 48px;
    height: 48px;
}

/* Star rating */
.testimonial-full-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.testimonial-full-rating svg {
    width: 24px;
    height: 24px;
    color: #442d72;
}

/* Body text */
.testimonial-full-body {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-full-body p {
    margin-bottom: 1rem;
}

.testimonial-full-body p:last-child {
    margin-bottom: 0;
}

/* Hide Drupal field label */
.testimonial-full-body .field__label {
    display: none;
}

/* Author section */
.testimonial-full-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #ede5f7;
}

/* Avatar */
.testimonial-full-avatar {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(68, 45, 114, 0.2);
    border: 3px solid #ede5f7;
}

.testimonial-full-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide Drupal field wrappers around image */
.testimonial-full-avatar .field {
    margin: 0;
    line-height: 0;
}

.testimonial-full-avatar .field__item {
    line-height: 0;
}

/* Author info */
.testimonial-full-author-info {
    text-align: left;
}

.testimonial-full-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #442d72;
    line-height: 1.3;
}

.testimonial-full-role {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

/* Hide Drupal field labels */
.testimonial-full-name .field__label,
.testimonial-full-role .field__label {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {
    .testimonial-full-wrapper {
        padding: 1.5rem 1rem 3rem;
    }

    .testimonial-full-body {
        font-size: 1.05rem;
    }

    .testimonial-full-avatar {
        width: 56px;
        height: 56px;
    }

    .testimonial-full-rating svg {
        width: 20px;
        height: 20px;
    }
}
