/* Container */
.ledsun-quote-container {
    margin: 3.0rem 0; /* 30px */
    font-family: inherit;
}

/* Blockquote chính */
blockquote.ledsun-quote {
    position: relative;
    margin: 0;
    padding: 2.5rem 3.0rem 2.5rem 6.0rem; /* 25px 30px 25px 60px */
    background-color: #f9f9f9;
    /* Border color sẽ được inline style xử lý, ở đây set mặc định fallback */
    border-left: 0.5rem solid #ffc107; 
    border-radius: 0 0.8rem 0.8rem 0;
    box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.05);
}

/* Icon */
blockquote.ledsun-quote .quote-icon {
    position: absolute;
    top: 2.0rem; /* 20px */
    left: 1.5rem; /* 15px */
    color: #ddd;
    font-size: 3.5rem; /* 35px - Icon to lên chút cho đẹp */
    line-height: 1;
}

/* Nội dung text - Đã tăng size */
blockquote.ledsun-quote .quote-content {
    font-size: 1.8rem; /* 18px - To rõ ràng */
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

/* Footer - Tên tác giả */
blockquote.ledsun-quote .quote-footer {
    margin-top: 1.5rem; /* 15px */
    text-align: right;
}

blockquote.ledsun-quote cite.quote-author {
    font-style: normal;
    font-weight: bold;
    color: #555;
    font-size: 1.6rem; /* 16px */
}

/* Mobile Responsive */
@media (max-width: 600px) {
    blockquote.ledsun-quote {
        padding: 2.0rem 1.5rem 2.0rem 4.5rem;
    }
    blockquote.ledsun-quote .quote-content {
        font-size: 1.6rem; /* Mobile để 16px là vừa */
    }
    blockquote.ledsun-quote .quote-icon {
        left: 1.0rem;
        font-size: 2.8rem;
    }
}