/* JALC Lucknow - Job Agency Theme */
:root {
    --primary: #0d0d0d;
    --primary-light: #1f1f1f;
    --accent: #cc0000;
    --accent-hover: #a80000;
    --accent-light: rgba(204, 0, 0, 0.1);
    --success: #15803d;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-600: #525252;
    --gray-800: #171717;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    padding-top: 88px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}

.text-accent {
    color: var(--accent) !important;
}

/* Logo */
.site-logo {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.footer-brand {
    text-decoration: none;
    line-height: 0;
}

/* Navbar */
#mainNavbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--accent);
}

#mainNavbar.scrolled {
    padding: 0.35rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

#mainNavbar.scrolled .site-logo {
    height: 48px;
}

#mainNavbar .navbar-nav .nav-link {
    color: var(--gray-800) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

#mainNavbar .navbar-nav .nav-link:hover,
#mainNavbar .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

#mainNavbar .dropdown-menu {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

#mainNavbar .dropdown-item {
    color: var(--gray-800);
}

#mainNavbar .dropdown-item:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.45);
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.88) 0%, rgba(204, 0, 0, 0.55) 100%),
        url('https://images.unsplash.com/photo-1521737711862-ece3cc7dbb0c?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.hero-search {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.hero-search .form-control,
.hero-search .form-select {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.hero-cta .btn {
    margin: 0.25rem;
}

/* Section */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header .subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Job Cards */
.job-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
    height: 100%;
}

.job-card:hover {
    border-left-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.job-card .company {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.job-card .meta {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.job-card .meta i {
    width: 18px;
    color: var(--accent);
}

.job-card .salary {
    font-weight: 600;
    color: var(--success);
}

.job-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--accent-light);
    color: var(--accent);
}

/* Stats / Counters */
.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-box .counter {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-box p {
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.stats-section .stat-block {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    height: 100%;
    transition: var(--transition);
}

.stats-section .stat-block:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(204, 0, 0, 0.45);
    transform: translateY(-4px);
}

.stats-section .stat-box .counter {
    color: var(--accent);
}

.stats-section .stat-box p {
    color: rgba(255, 255, 255, 0.85);
}

/* Category Cards */
.category-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    text-decoration: none;
    color: var(--gray-800);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.category-card:hover .icon {
    background: var(--accent);
    color: var(--white);
}

.category-card .icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

/* Clients Section */
.clients-section {
    overflow: hidden;
}

.clients-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.client-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(204, 0, 0, 0.25);
}

.client-card-logo {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
}

.client-card-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.client-card:hover .client-card-logo img {
    transform: scale(1.04);
}

.client-card-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-card-name {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.35;
}

.clients-marquee {
    overflow: hidden;
    padding: 0.5rem 0;
    margin: 0 -0.5rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.clients-marquee-track {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    width: max-content;
    animation: clients-scroll 35s linear infinite;
    padding: 0.5rem 0;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .clients-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

.clients-marquee .client-card {
    width: 210px;
    flex-shrink: 0;
}

.clients-marquee:hover .clients-marquee-track {
    animation-play-state: paused;
}

@keyframes clients-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin: 1rem;
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-card .content {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* News Cards */
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .card-body {
    padding: 1.5rem;
}

.news-card .date {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 4rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 60%, #1f1212 100%);
    padding: 4rem 0 3rem;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid var(--accent);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(204, 0, 0, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(204, 0, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.page-header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Forms */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.2);
}

/* Footer */
.site-footer {
    background: var(--primary);
    border-top: 4px solid var(--accent);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
}

.site-footer h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-col {
    min-width: 0;
}

.footer-desc {
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    width: 20px;
    margin-right: 8px;
}

.site-footer .footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.site-footer .footer-contact a:hover {
    color: var(--accent);
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a.social-facebook:hover {
    background: #1877f2;
}

.social-links a.social-x:hover {
    background: #000000;
}

.social-links a.social-linkedin:hover {
    background: #0a66c2;
}

.social-links a.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-credit {
    margin: 0;
    padding-bottom: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--accent);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent);
}

.timeline-item .year {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Team */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card .info {
    padding: 1.5rem;
}

.team-card h5 {
    margin-bottom: 0.25rem;
}

.team-card .designation {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Filters sidebar */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

/* Job details */
.job-detail-header {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.job-detail-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.job-detail-content ul {
    padding-left: 1.25rem;
}

.job-detail-content li {
    margin-bottom: 0.5rem;
}

/* Admin */
body.admin-body {
    padding-top: 0;
}

.admin-sidebar {
    background: var(--primary);
    min-height: 100vh;
    padding: 2rem 0;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-left: 3px solid transparent;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent);
}

.admin-content {
    padding: 2rem;
    background: var(--gray-100);
    min-height: 100vh;
}

.admin-stat-card {
    transition: var(--transition);
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg) !important;
}

/* Auth pages */
.auth-wrapper {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    background: var(--gray-100);
    padding: 3rem 0;
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.thankyou-wrapper,
.error-page-wrapper {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    background: var(--gray-100);
    padding: 3rem 0;
}

.thankyou-card,
.error-page-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thankyou-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    line-height: 1;
}

.thankyou-card h1,
.error-page-card h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.thankyou-card p,
.error-page-card p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* Error pages */
.error-code {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 12vw, 5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.error-icon-404 {
    color: var(--primary);
}

.error-icon-500 {
    color: #b45309;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Captcha */
.captcha-group .captcha-question {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.captcha-input {
    max-width: 120px;
}

/* Lazy load */
img[loading="lazy"] {
    background: var(--gray-200);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 3.5rem 0 2.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    body {
        padding-top: 80px;
    }

    .site-logo {
        height: 46px;
        max-width: 160px;
    }

    .footer-logo {
        height: 60px;
    }
}

.rich-content {
    line-height: 1.75;
    color: var(--text-color, #333);
}

.rich-content > *:first-child {
    margin-top: 0;
}

.rich-content > *:last-child {
    margin-bottom: 0;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.rich-content p {
    margin-bottom: 1rem;
}

.rich-content ul,
.rich-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.rich-content blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-left: 4px solid var(--accent-color, #c41e3a);
    background: rgba(0, 0, 0, 0.03);
}

.rich-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.rich-content th,
.rich-content td {
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
}

.rich-content a {
    color: var(--accent-color, #c41e3a);
}