/**
 * Feedback / Testimonials Section Styles - Custom Agency
 * Matches React Feedback.jsx
 */
#feedback {
    background-color: #181717;
    color: #f4efe7;
    width: 100%;
}

.feedback-quote-heading {
    color: #f4efe7;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    min-height: 3.5em;
    transition: opacity 0.3s ease;
}

.feedback-author-avatar-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    object-fit: cover;
    border: 1px solid rgba(177, 166, 150, 0.4);
    display: inline-block;
}

@media (min-width: 768px) {
    .feedback-author-avatar-img {
        width: 4rem;
        height: 4rem;
    }
}

.feedback-control-btn {
    border: 1px solid #aaa090;
    padding: 0.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feedback-control-btn:hover {
    background-color: #aaa090;
    color: #181717;
}

.feedback-progress-fill {
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
