/*
Theme Name: Event Planner Pro
Theme URI: https://eventplannerpro.com
Author: Event Planner Team
Author URI: https://eventplannerpro.com
Description: A professional event planning and management theme designed for event organizers, planners, and management companies. Features include event creation, task management, client coordination, budget tracking, and guest list management.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: event-planner-pro
Tags: event-management, business, professional, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand Colors - Stunning Purple to Blue Gradient Theme */
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary-color: #7C3AED;
    --secondary-dark: #6D28D9;
    --secondary-light: #A78BFA;
    --accent-color: #EC4899;
    --accent-dark: #DB2777;

    /* Semantic Colors */
    --success-color: #10B981;
    --success-dark: #059669;
    --success-light: #34D399;
    --warning-color: #F59E0B;
    --warning-dark: #D97706;
    --warning-light: #FBBF24;
    --danger-color: #EF4444;
    --danger-dark: #DC2626;
    --danger-light: #F87171;
    --info-color: #3B82F6;
    --info-dark: #2563EB;
    --info-light: #60A5FA;

    /* Neutral Grays */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Legacy support */
    --dark-color: var(--gray-800);
    --light-color: var(--gray-50);
    --text-color: var(--gray-700);
    --border-color: var(--gray-200);

    /* Shadows - Enhanced depth */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #7C3AED 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-sunset: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    --gradient-ocean: linear-gradient(135deg, #3B82F6 0%, #4F46E5 100%);

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

/* Header - Enhanced Modern Design */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all var(--transition-base);
}

.site-title:hover {
    transform: scale(1.02);
}

.site-description {
    display: none;
}

/* Navigation - Enhanced */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Header Auth Buttons */
.header-auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Main Content */
.site-main {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Dashboard Layout - Enhanced */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dashboard-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.dashboard-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Buttons - Stunning Modern Design */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-danger:hover {
    background-color: var(--danger-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Tables */
.event-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.event-table table {
    width: 100%;
    border-collapse: collapse;
}

.event-table th,
.event-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.event-table th {
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.event-table tr:hover {
    background-color: var(--light-color);
}

/* Forms */
.event-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Status Badges - Enhanced */
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.badge-success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: var(--success-dark);
}

.badge-warning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: var(--warning-dark);
}

.badge-danger {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: var(--danger-dark);
}

.badge-info {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: var(--info-dark);
}

.badge-primary {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: var(--primary-dark);
}

/* Hero Section - Stunning Homepage Design */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-gradient-text {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Role Selector Cards */
.hero-role-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.role-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-slow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.role-card:hover::before {
    left: 100%;
}

.role-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        var(--shadow-2xl),
        0 0 40px rgba(79, 70, 229, 0.4);
}

.role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-role .role-icon {
    background: var(--gradient-primary);
    color: white;
}

.vendor-role .role-icon {
    background: var(--gradient-secondary);
    color: white;
}

.role-icon svg {
    width: 100%;
    height: 100%;
}

.role-card h3 {
    font-size: 1.875rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.role-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.role-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.role-login-link {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition-base);
}

.role-login-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-role-selector {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Section Styling */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 2rem;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    opacity: 0.2;
    z-index: -1;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.primary-gradient {
    background: var(--gradient-primary);
}

.secondary-gradient {
    background: var(--gradient-secondary);
}

.success-gradient {
    background: var(--gradient-success);
}

.warning-gradient {
    background: var(--gradient-sunset);
}

.info-gradient {
    background: var(--gradient-ocean);
}

.accent-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.feature-card h3 {
    font-size: 1.375rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gray-900);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.9;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-outline-white {
    border-color: white;
    color: white;
}

.cta-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-auth-buttons {
        width: 100%;
        justify-content: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Calendar Styles */
.event-calendar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Timeline */
.event-timeline {
    position: relative;
    padding-left: 2rem;
}

.event-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid white;
}

/* Progress Bar */
.progress {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

/* Register & Login Pages */
.register-page-section,
.login-page-section {
    min-height: calc(100vh - 200px);
    padding: 4rem 2rem;
    background: var(--gray-50);
}

.register-container,
.login-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.register-content,
.login-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.register-header,
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1,
.login-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle,
.login-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.register-footer,
.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.register-footer a,
.login-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.register-footer a:hover,
.login-footer a:hover {
    text-decoration: underline;
}

/* Benefits Sidebar */
.register-benefits,
.login-benefits {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.register-benefits h3,
.login-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.benefit-section {
    margin-bottom: 2rem;
}

.benefit-section:last-child {
    margin-bottom: 0;
}

.benefit-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.benefits-list li svg {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Plugin Notice */
.plugin-notice {
    background: var(--warning-light);
    border: 1px solid var(--warning-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.plugin-notice h3 {
    color: var(--warning-dark);
    margin-bottom: 1rem;
}

.plugin-notice p {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Role Selector Notice */
.role-selector-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.role-selector-notice p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.quick-link-card:hover {
    background: white;
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-link-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.client-color {
    background: var(--gradient-primary);
}

.vendor-color {
    background: var(--gradient-secondary);
}

.home-color {
    background: var(--gradient-ocean);
}

.quick-link-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
}

.quick-link-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive Login/Register */
@media (max-width: 968px) {
    .register-container,
    .login-container {
        grid-template-columns: 1fr;
    }

    .register-benefits,
    .login-benefits {
        order: 2;
    }

    .register-content,
    .login-content {
        padding: 2rem;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Hero with Gradient */
.blog-hero-gradient {
    background: var(--gradient-primary);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.blog-hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-20px); }
}

.blog-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.blog-hero-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.blog-title-gradient {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem;
}

/* Search Form */
.blog-search-gradient {
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper-gradient {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.search-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    margin-left: 1rem;
    flex-shrink: 0;
}

.search-input-gradient {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
}

.search-btn-gradient {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.blog-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.blog-posts-grid-event {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Card with Gradient Border */
.blog-card-gradient {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.blog-card-gradient:hover::before {
    opacity: 1;
}

.blog-card-gradient:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.blog-card-image-gradient {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-card-image-gradient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card-gradient:hover .blog-card-image-gradient img {
    transform: scale(1.1);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.blog-card-body-gradient {
    padding: 1.5rem;
}

.blog-meta-gradient {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.meta-item-gradient {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.meta-item-gradient svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.meta-separator-gradient {
    color: var(--gray-400);
}

.blog-cats-gradient {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cat-badge-gradient {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.cat-badge-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.primary-gradient {
    background: var(--gradient-primary);
}

.secondary-gradient {
    background: var(--gradient-secondary);
}

.accent-gradient {
    background: var(--gradient-ocean);
}

.success-gradient {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.warning-gradient {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.info-gradient {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.blog-card-title-gradient {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
    color: var(--gray-900);
    transition: color 0.3s;
}

.blog-card-gradient:hover .blog-card-title-gradient {
    color: var(--primary-color);
}

.blog-card-excerpt-gradient {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-read-btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-read-btn-gradient svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.blog-card-gradient:hover .blog-read-btn-gradient {
    gap: 0.75rem;
}

.blog-card-gradient:hover .blog-read-btn-gradient svg {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination-gradient {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination-gradient .page-numbers {
    padding: 0.75rem 1rem;
    background: white;
    color: var(--gray-700);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-pagination-gradient .page-numbers svg {
    width: 18px;
    height: 18px;
}

.blog-pagination-gradient .page-numbers:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.blog-pagination-gradient .page-numbers.current {
    background: var(--gradient-primary);
    color: white;
}

/* No Posts Message */
.no-posts-gradient {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-xl);
}

.no-posts-icon-gradient {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-posts-icon-gradient svg {
    width: 40px;
    height: 40px;
    color: white;
}

.no-posts-gradient h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--gray-900);
}

.no-posts-gradient p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Archive Hero */
.archive-hero-grad {
    background: var(--gradient-primary);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.archive-hero-grad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
}

.archive-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 1;
    text-align: center;
}

.archive-icon-grad {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.archive-icon-grad svg {
    width: 32px;
    height: 32px;
    color: white;
}

.archive-title-grad {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem;
}

.archive-desc-grad {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Single Blog Post */
.single-blog-main {
    background: var(--gray-50);
}

.single-blog-hero-grad {
    background: var(--gradient-primary);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.single-blog-hero-grad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
}

.single-hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs-grad {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumbs-grad a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.3s;
}

.breadcrumbs-grad a:hover {
    color: white;
}

.breadcrumbs-grad svg {
    width: 16px;
    height: 16px;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-grad span {
    color: rgba(255, 255, 255, 0.7);
}

.single-cats-grad {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cat-badge-grad {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.cat-badge-grad:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.single-title-grad {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.single-meta-grad {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.single-meta-grad span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-meta-grad svg {
    width: 18px;
    height: 18px;
}

.single-featured-grad {
    max-width: 1200px;
    margin: -2rem auto 3rem;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 2;
}

.single-featured-grad img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

/* Single Post Layout */
.single-layout-grad {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4) 5rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.single-content-grad {
    min-width: 0;
}

.content-card-grad {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.content-card-grad h1,
.content-card-grad h2,
.content-card-grad h3,
.content-card-grad h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card-grad h2 {
    font-size: 1.875rem;
}

.content-card-grad h3 {
    font-size: 1.5rem;
}

.content-card-grad p {
    margin-bottom: 1.5rem;
}

.content-card-grad img {
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

/* Tags Section */
.tags-section-grad {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.tags-section-grad h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

.tags-section-grad svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.tags-list-grad {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-grad {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tag-grad:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* Share Section */
.share-section-grad {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.share-section-grad h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

.share-section-grad svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.share-btns-grad {
    display: flex;
    gap: 0.75rem;
}

.share-btn-grad {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn-grad:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* Author Box */
.author-box-grad {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
}

.author-avatar-grad {
    flex-shrink: 0;
}

.author-avatar-grad img {
    border-radius: var(--radius-full);
    width: 80px;
    height: 80px;
}

.author-info-grad {
    flex: 1;
}

.author-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.author-info-grad h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.author-info-grad p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-nav-grad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nav-card-grad {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.nav-card-grad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.nav-card-grad svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.nav-card-grad span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.nav-card-grad h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

/* Sidebar */
.single-sidebar-grad {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget-grad {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.sidebar-widget-grad h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
}

.sidebar-widget-grad svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.recent-item-grad {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.3s;
}

.recent-item-grad:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-item-grad:first-child {
    padding-top: 0;
}

.recent-item-grad:hover {
    transform: translateX(4px);
}

.recent-thumb-grad {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.recent-thumb-grad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-item-grad h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
    line-height: 1.4;
}

.recent-item-grad span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.cat-item-grad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s;
}

.cat-item-grad:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cat-item-grad:first-child {
    padding-top: 0;
}

.cat-item-grad:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.cat-count-grad {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-posts-grid-event {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-layout-grad {
        grid-template-columns: 1fr;
    }

    .single-sidebar-grad {
        position: static;
    }

    .single-title-grad {
        font-size: 2.25rem;
    }

    .archive-title-grad {
        font-size: 2.25rem;
    }

    .content-card-grad {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-posts-grid-event {
        grid-template-columns: 1fr;
    }

    .post-nav-grad {
        grid-template-columns: 1fr;
    }

    .single-title-grad {
        font-size: 1.875rem;
    }

    .archive-title-grad {
        font-size: 1.875rem;
    }

    .content-card-grad {
        padding: 1.5rem;
    }

    .search-wrapper-gradient {
        flex-direction: column;
        align-items: stretch;
    }

    .search-btn-gradient {
        width: 100%;
    }

    .share-btns-grad {
        flex-direction: column;
    }

    .author-box-grad {
        flex-direction: column;
        text-align: center;
    }
}
