/* ============================================================
   MODULE.CSS v3.0 - 组件样式
   ============================================================
   匹配 Section 模板:
   - AuthorBoxSection / AuthorProfileSection / AuthorPostsListSection / MainAuthorsSection
   - FaqSection
   - SidebarWidgetsSection
   - PaginationSection
   - SearchBoxSection / SearchResultsSection
   - Error404Section
   - LegalArticleSection
   - PostListSection / RelatedPostsSection
   - SocialShareSection
   ============================================================ */

/* ============================================
   1. Author Profile (AuthorProfileSection)
   ============================================ */
.author-profile {
    background: linear-gradient(135deg, #fbfdff 0%, #edf1f7 55%, #dce4ee 100%);
}

.author-profile h1 {
    color: #12263d;
}

.author-profile img.rounded-circle {
    border: 4px solid #fbfdff;
    box-shadow: 0 10px 24px rgba(32, 48, 72, 0.14), 0 4px 10px rgba(32, 48, 72, 0.08);
}

.author-profile .badge.bg-light {
    background: #dce4ee !important;
    color: #2f3e55 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.author-profile .badge.bg-light:hover {
    background: #355070 !important;
    color: #ffffff !important;
}

/* ============================================
   2. Author Box (AuthorBoxSection)
   ============================================ */
.author-box {
    border-inline-start: 4px solid #e5985c;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border-radius: 1rem;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.author-box:hover {
    box-shadow: 0 12px 28px rgba(32, 48, 72, 0.16), 0 4px 12px rgba(32, 48, 72, 0.1);
}

.author-box img {
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.author-box:hover img {
    transform: scale(1.05);
}

/* ============================================
   3. Author Posts List (AuthorPostsListSection)
   ============================================ */
.author-posts-list .card {
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
}

.author-posts-list .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(32, 48, 72, 0.16), 0 6px 14px rgba(32, 48, 72, 0.1);
}

.author-posts-list .card-img-top {
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.author-posts-list .card:hover .card-img-top {
    transform: scale(1.05);
}

/* ============================================
   4. Main Authors (MainAuthorsSection)
   ============================================ */
.main-authors-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #edf1f7 100%);
}

.author-card {
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    border: 1px solid rgba(53, 80, 112, 0.18);
    border-radius: 1.25rem;
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
}

.author-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 48, 72, 0.18), 0 8px 16px rgba(32, 48, 72, 0.12);
}

.author-card img.rounded-circle {
    border: 3px solid #dce4ee;
    transition: border-color 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.author-card:hover img.rounded-circle {
    border-color: #355070;
}

/* ============================================
   5. FAQ (FaqSection) - <details>/<summary>
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, #edf1f7 0%, #f7f9fc 45%, #ffffff 100%);
}

.faq-section h2 {
    font-size: 1.75rem;
    color: #12263d;
}

/* FAQ item */
.faq-list .faq-item {
    border: 1px solid rgba(18, 38, 61, 0.08);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
}

.faq-list .faq-item:hover {
    box-shadow: 0 10px 24px rgba(18, 38, 61, 0.12), 0 4px 8px rgba(18, 38, 61, 0.08) !important;
    transform: translateY(-2px);
}

.faq-list .faq-item[open] {
    border-color: rgba(53, 80, 112, 0.3);
    background: linear-gradient(90deg, #e8effa 0%, #ffffff 100%);
    border-image: linear-gradient(120deg, #355070, #e5985c) 1;
}

/* summary */
.faq-list .faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1.6;
    padding-inline-end: 2rem;
    position: relative;
    user-select: none;
}

.faq-list .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-list .faq-item summary::marker {
    content: '';
}

.faq-list .faq-item summary::after {
    content: '+';
    position: absolute;
    inset-inline-end: 0.25rem;
    inset-block-start: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #355070;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    line-height: 1;
}

.faq-list .faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

/* Q number */
.faq-list .faq-q-num {
    font-weight: 700;
    font-size: 0.95rem;
    color: #355070;
}

/* Answer */
.faq-list .faq-answer {
    font-size: 0.95rem;
    line-height: 1.8;
    animation: faqFadeIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   6. Sidebar Widgets (SidebarWidgetsSection)
   ============================================ */
.sidebar-widgets .card {
    background: linear-gradient(145deg, #2e3b4e 0%, #252e3a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    color: #dce4ee;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sidebar-widgets .card:hover {
    box-shadow: 0 12px 28px rgba(9, 13, 20, 0.35), 0 4px 12px rgba(9, 13, 20, 0.25);
}

.sidebar-widgets h5 {
    color: #ffffff;
}

.sidebar-widgets .badge {
    background-color: #3b4a5e !important;
    color: #e2e8f0 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}

.sidebar-widgets .badge:hover {
    background-color: #e5985c !important;
    color: #12263d !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 152, 92, 0.3);
}

.sidebar-widgets ul li:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.sidebar-widgets ul li a:hover .small {
    color: #e5985c !important;
}

/* ============================================
   7. Pagination (PaginationSection)
   ============================================ */
.pagination .page-link {
    color: #355070;
    border-color: #c9d3e0;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pagination .page-link:hover {
    background-color: #dce4ee;
    color: #21395a;
    border-color: #355070;
}

.pagination .page-item.active .page-link {
    background-color: #355070;
    border-color: #355070;
    color: #ffffff;
}

.pagination .page-item.disabled .page-link {
    color: #8a94a6;
}

/* ============================================
   8. Search Box (SearchBoxSection)
   ============================================ */
.search-box-section {
    background: linear-gradient(135deg, #edf1f7 0%, #f7f9fc 55%, #ffffff 100%);
}

.search-box-section .input-group-lg .form-control {
    border-radius: 999px 0 0 999px;
    padding-inline-start: 1.5rem;
    caret-color: #e5985c;
    accent-color: #355070;
}

.search-box-section .input-group-lg .btn {
    border-radius: 0 999px 999px 0;
}

.search-box-section .badge {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.search-box-section .badge:hover {
    background-color: #355070 !important;
    color: #ffffff !important;
    border-color: #355070 !important;
}

/* ============================================
   9. Search Results (SearchResult
sSection)
   ============================================ */
.search-results-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.search-result {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border-radius: 0.75rem;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.search-result:hover {
    transform: translateX(3px);
    box-shadow: 0 12px 28px rgba(32, 48, 72, 0.14), 0 4px 12px rgba(32, 48, 72, 0.08);
}

.search-result h2 a:hover {
    color: #355070 !important;
}

.search-result mark {
    background-color: #fde68a;
    padding-inline: 2px;
    border-radius: 4px;
    font-weight: 600;
}

/* ============================================
   10. Error Page (Error404Section)
   ============================================ */
.error-page h1 {
    background: linear-gradient(135deg, #355070 0%, #21395a 45%, #e5985c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 0 8px 30px rgba(229, 152, 92, 0.25);
}

.recommended-links .badge {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid #c9d3e0;
    background: #fbfdff;
}

.recommended-links .badge:hover {
    background-color: #355070 !important;
    color: #ffffff !important;
    border-color: #355070 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 48, 72, 0.14), 0 3px 8px rgba(32, 48, 72, 0.08);
}

.recommended-links .badge:hover .text-warning {
    color: #e5985c !important;
}

/* ============================================
   11. Legal Article (LegalArticleSection)
   ============================================ */
.legal-article-section,
main:has(> .container > article.bg-white) {
    background: linear-gradient(180deg, #edf1f7 0%, #f7f9fc 100%);
}

article :is(h2.h4) {
    color: #21395a;
    border-bottom: 2px solid #c9d3e0;
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-sm);
}

article .alert-info {
    background-color: #dbeafe;
    border-color: #bcd1f5;
    color: #21395a;
}

article .list-group-item {
    background: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

article .list-group-item:hover {
    background: #edf1f7;
    padding-inline-start: var(--space-sm);
}

/* ============================================
   12. Post List (PostListSection - Category page)
   ============================================ */
.posts-grid {
    /* Container nếu cần */
}

.posts-grid .card {
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    border: 1px solid rgba(53, 80, 112, 0.15);
    border-radius: 1.25rem;
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
    overflow: hidden;
}

.posts-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(32, 48, 72, 0.16), 0 6px 14px rgba(32, 48, 72, 0.1);
    border-color: #355070;
}

.posts-grid .card-img-top {
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.posts-grid .card:hover .card-img-top {
    transform: scale(1.05);
}

.posts-grid .card-title a {
    transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.posts-grid .card-title a:hover {
    color: #355070 !important;
}

/* ============================================
   13. Related Posts (RelatedPostsSection)
   ============================================ */
.related-posts h3 {
    border-bottom: 3px solid #e5985c;
    padding-bottom: var(--space-xs);
    display: inline-block;
}

.related-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
    border-radius: 1rem;
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(32, 48, 72, 0.14), 0 4px 12px rgba(32, 48, 72, 0.08);
}

.related-card img {
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.related-card:hover img {
    transform: scale(1.05);
}

/* ============================================
   14. Social Share (SocialShareSection)
   ============================================ */
.social-share .btn {
    min-width: 40px;
    border-radius: 0.75rem;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.social-share .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 48, 72, 0.14), 0 3px 8px rgba(32, 48, 72, 0.08);
}

.social-share [data-copy-url].copied {
    background-color: #2a7f6e;
    color: #ffffff;
    border-color: #2a7f6e;
}

/* ============================================
   15. Bootstrap Accordion override
   ============================================ */
.accordion-button:not(.collapsed) {
    background-color: #dbeafe;
    color: #21395a;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(53, 80, 112, 0.15);
}

/* ============================================
   16. Modal (用于 SocialShare 微信二维码)
   ============================================ */
.modal-content {
    border: none;
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
    border-radius: 1.25rem;
    box-shadow: 0 24px 48px rgba(18, 38, 61, 0.2), 0 8px 16px rgba(18, 38, 61, 0.12);
}

/* ============================================
   17. Tooltip (Bootstrap)
   ============================================ */
.tooltip-inner {
    background-color: #12263d;
    border-radius: 0.5rem;
    font-size: 0.85rem;
}

/* ============================================
   18. Responsive
   ============================================ */
@media (max-width: 767.98px) {
    .faq-section h2 {
        font-size: 1.4rem;
    }

    .faq-list .faq-item summary {
        font-size: 0.95rem;
        padding-inline-end: 1.5rem;
    }

    .faq-list .faq-answer {
        font-size: 0.88rem;
    }

    .author-profile h1 {
        font-size: 1.5rem;
    }

    .author-profile .col-md-3 img {
        width: 120px !important;
        height: 120px !important;
    }

    .error-page h1 {
        font-size: 5rem !important;
    }

    .search-box-section .input-group-lg .form-control,
    .search-box-section .input-group-lg .btn {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .related-posts .row > [class*="col-"] {
        margin-bottom: var(--space-sm);
    }

    .pagination .page-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }
}