/* Mouths of Mums Review Quote Stylesheet */

.mom-rq-card {
    background-color: #ffffff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 32px;
    font-family: 'Montserrat', sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
}

.mom-rq-card.has-hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.mom-rq-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mom-rq-avatar-container {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.mom-rq-avatar-fallback {
    width: 100%;
    height: 100%;
    background-color: #604a79; /* MoM Purple */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
    padding: 4px;
    box-sizing: border-box;
}

.mom-rq-fallback-m {
    font-size: 8px;
    letter-spacing: 0.5px;
    opacity: 0.95;
    margin-bottom: 1px;
}

.mom-rq-fallback-sub {
    font-size: 7px;
    font-style: italic;
    font-weight: 500;
    opacity: 0.85;
}

.mom-rq-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.mom-rq-meta-name {
    font-weight: 700;
    font-size: 14px;
    color: #333333;
}

.mom-rq-meta-date {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 12px;
    color: #888888;
    font-weight: 400;
}

.mom-rq-time {
    opacity: 0.85;
}

.mom-rq-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mom-rq-product-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #1f4173; /* MoM Deep Navy */
}

.mom-rq-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    white-space: pre-line;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .mom-rq-card {
        padding: 24px;
        gap: 20px;
    }
    
    .mom-rq-product-title {
        font-size: 20px;
    }
    
    .mom-rq-review-text {
        font-size: 14px;
    }
}
