/* Member Quotes Block Styles */

.member-quotes-block {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.member-quotes_title {
    font-family: "Georgia", "Times New Roman", Times, serif;
    color: #1a2b49; /* Dark Navy Blue */
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.member-quote-card {
    transition: transform 0.3s ease;
}

.member-quote-card:hover {
    transform: translateY(-5px);
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    font-family: "Georgia", serif;
    font-weight: 500; 
}

.quote-separator {
    width: 40px;
    height: 2px;
    background-color: #d4af37; /* Gold */
    margin: 0 auto;
    opacity: 0.7;
}

.quote-author-name {
    color: #d4af37; /* Gold */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 15px;
}

.quote-author-info {
    color: #d4af37; /* Gold */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* Response adjustments */
@media (max-width: 768px) {
    .member-quotes_title {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}
