.module.css — symmetric-grid / glow-effects theme

```css
/* ============================================================
   MODULE.CSS v3.0 — symmetric-grid / glow-effects refresh
   ============================================================ */
.author-profile {
    background: linear-gradient(135deg, #fdfbff 0%, #f1edff 100%);
}

.author-profile h1 {
    color: #3b0764;
}

.author-profile img.rounded-circle {
    border: 4px solid #fff;
    box-shadow: 0 14px 30px -10px rgba(76, 29, 149, 0.18),
                0 0 20px rgba(34, 211, 238, 0.16);
}

.author-profile .badge.bg-light {
    background: #ede9fe !important;
    color: #312e81 !important;
    transition: all 0.25s ease-in-out;
}

.author-profile .badge.bg-light:hover {
    background: #7c3aed !important;
    color: #fff !important;
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.28);
}

/* ============================================
   2. Author Box
   ============================================ */
.author-box {
    border-inline-start: 4px solid #22d3ee;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.author-box:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.22),
                0 16px 32px -14px rgba(124, 58, 237, 0.24);
}

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

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

/* ============================================
   3. Author Posts List
   ============================================ */
.author-posts-list .card {
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    overflow: hidden;
}

.author-posts-list .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 32px rgba(124, 58, 237, 0.14),
                0 22px 40px -20px rgba(76, 29, 149, 0.28);
    border-color: rgba(34, 211, 238, 0.4);
}

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

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

/* ============================================
   4. Main Authors
   ============================================ */
.main-authors-section {
    background: #f3efff;
}

.author-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                background-color 0.4s ease;
}

.author-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 36px rgba(124, 58, 237, 0.16),
                0 26px 45px -18px rgba(76, 29, 149, 0.3);
    border-color: rgba(34, 211, 238, 0.45);
}

.author-card img.rounded-circle {
    border: 3px solid #e9e2ff;
    transition: border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.author-card:hover img.rounded-circle {
    border-color: #7c3aed;
    box-shadow: 0 0 22px rgba(124, 58, 237, 0.3);
}

/* ============================================
   5. FAQ
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, #f3efff 0%, #ffffff 100%);
}

.faq-section h2 {
    font-size: 1.75rem;
    color: #4c1d95;
}

.faq-list .faq-item {
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 10px rgba(76, 29, 149, 0.04);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
    cursor: pointer;
}

.faq-list .faq-item:hover {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.13),
                0 18px 36px -18px rgba(76, 29, 149, 0.22) !important;
    transform: translateY(-2px);
}

.faq-list .faq-item[open] {
    border-color: rgba(34, 211, 238, 0.4);
    background: linear-gradient(90deg, #f5f3ff 0%, #ffffff 100%);
}

.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: #7c3aed;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.35s ease;
    line-height: 1;
}

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

.faq-list .faq-q-num {
    font-weight: 700;
    font-size: 0.95rem;
    color: #7c3aed;
}

.faq-list .faq-answer {
    font-size: 0.95rem;
    line-height: 1.8;
    animation: faqFadeIn 0.35s ease-out;
}

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

/* ============================================
   6. Sidebar Widgets
   ============================================ */
.sidebar-widgets .card {
    border-radius: 16px;
    background: #ffffff;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.sidebar-widgets .card:hover {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.12),
                0 16px 34px -16px rgba(76, 29, 149, 0.24);
}

.sidebar-widgets h5 {
    color: #4c1d95;
}

.sidebar-widgets .badge {
    background: #e9e2ff;
    color: #3b0764;
    border-radius: 10px;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.sidebar-widgets .badge:hover {
    background-color: #7c3aed !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.25);
}

.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: #7c3aed !important;
}

/* ============================================
   7. Pagination
   ============================================ */
.pagination .page-link {
    color: #7c3aed;
    background-color: #ffffff;
    border-color: #e2dcfa;
    transition: all 0.25s ease-in-out;
}

.pagination .page-link:hover {
    background-color: #ede9fe;
    color: #4c1d95;
    border-color: #7c3aed;
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.16);
}

.pagination .page-item.active .page-link {
    background-color: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.35),
                0 6px 16px -6px rgba(76, 29, 149, 0.35);
}

.pagination .page-item.disabled .page-link {
    color: #9b96c2;
    box-shadow: none;
}

/* ============================================
   8. Search Box
   ============================================ */
.search-box-section {
    background: #f3efff;
}

.search-box-section .input-group-lg .form-control {
    border-radius: 50rem 0 0 50rem;
    border-color: #ded7fa;
    padding-inline-start: 1.5rem;
}

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

.search-box-section .badge {
    transition: all 0.25s ease-in-out;
}

.search-box-section .badge:hover {
    background-color: #7c3aed !important;
    color: #fff !important;
    border-color: #7c3aed !important;
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.3);
}

/* ============================================
   9. Search Results
   ============================================ */
.search-results-section {
    background: #ffffff;
}

.search-result {
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                background-color 0.35s ease;
}

.search-result:hover {
    transform: translateX(3px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.1),
                0 14px 30px -14px rgba(76, 29, 149, 0.22);
}

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

.search-result mark {
    background-color: #fef9c3;
    box-shadow: 0 2px 0 rgba(245, 158, 11, 0.3);
    padding-inline: 2px;
    border-radius: 4px;
    font-weight: 600;
}

/* ============================================
   10. Error Page
   ============================================ */
.error-page h1 {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 45%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(124, 58, 237, 0.28);
}

.recommended-links .badge {
    transition: all 0.25s ease-in-out;
    border: 1px solid #d8d0fa;
}

.recommended-links .badge:hover {
    background-color: #7c3aed !important;
    color: #fff !important;
    border-color: #7c3aed !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3),
                0 8px 18px -8px rgba(76, 29, 149, 0.3);
}

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

/* ============================================
   11. Legal Article
   ============================================ */
.legal-article-section,
main:has(> .container > article.bg-white) {
    background: #f6f3ff;
}

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

article .alert-info {
    background-color: #ecfeff;
    border-color: #a5f3fc;
    color: #155e75;
    border-radius: 14px;
}

article .list-group-item {
    background: transparent;
    transition: all 0.25s ease-in-out;
}

article .list-group-item:hover {
    background: #f3efff;
    padding-inline-start: var(--space-sm);
    border-radius: 12px;
}

/* ============================================
   12. Post List
   ============================================ */
.posts-grid .card {
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    overflow: hidden;
}

.posts-grid .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 34px rgba(34, 211, 238, 0.18),
                0 24px 42px -18px rgba(76, 29, 149, 0.3);
    border-color: #7c3aed;
}

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

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

.posts-grid .card-title a {
    transition: color 0.25s ease;
}

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

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

.related-card {
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(76, 29, 149, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.14),
                0 18px 36px -16px rgba(76, 29, 149, 0.26);
}

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

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

/* ============================================
   14. Social Share
   ============================================ */
.social-share .btn {
    min-width: 40px;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                background-color 0.25s ease,
                color 0.25s ease;
}

.social-share .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.24),
                0 8px 16px -6px rgba(76, 29, 149, 0.28);
}

.social-share [data-copy-url].copied {
    background-color: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
    box-shadow: 0 0 22px rgba(13, 148, 136, 0.4);
}

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

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

/* ============================================
   16. Modal
   ============================================ */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.15),
                0 30px 60px -18px rgba(76, 29, 149, 0.35);
}

/* ============================================
   17. Tooltip
   ============================================ */
.tooltip-inner {
    background-color: #3b0764;
    border-radius: 8px;
    font-size: 0.85rem;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
}

/* ============================================
   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;
    }
}