/* ================================
   Clean AI Tool Directory - Main Styles
   ================================ */

/* CSS Variables - Dark Mode Palette */
:root {
    --primary-color: #60A5FA; /* Bright lighter blue */
    --primary-hover: #3B82F6;
    --bg-color: #0F172A; /* Dark navy */
    --bg-secondary: #1E293B; /* Darker navy */
    --bg-tertiary: #334155; /* Medium dark */
    --text-color: #F1F5F9; /* Light text */
    --text-secondary: #94A3B8; /* Medium text */
    --text-muted: #64748B; /* Muted text */
    --border-color: #334155; /* Dark border */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --border-radius: 8px;
    --max-width: 1280px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2563EB;
}

/* Header */
.site-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-lg) !important;
}

.dropdown-item {
    color: var(--text-color) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-tertiary) !important;
    color: var(--primary-color) !important;
}

/* Alert Messages */
.alert {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

/* Pagination */
.pagination .page-link {
    background-color: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color) !important;
}

.pagination .page-link:hover {
    background-color: var(--bg-tertiary) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    height: 60px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Dropdown Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--bg-color);
        border-radius: 8px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--border-color);
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        display: block !important;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        background-color: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 4px;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        color: var(--text-color) !important;
        display: block;
        width: 100%;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--bg-tertiary) !important;
        color: var(--primary-color) !important;
    }

    /* Show dropdown toggle icon */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.5rem;
        vertical-align: 0.2rem;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.search-form .form-control {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    width: 200px;
}

.search-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Form Controls - Dark Mode */
.form-control {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

.form-control:focus {
    background-color: var(--bg-tertiary) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

/* Input Groups */
.input-group .form-control {
    background-color: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
}

.btn-search {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-search:hover {
    background-color: #2563EB;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 0 0 3rem 0;
}

/* Hero Section - Full Width */
.hero-section {
    width: 100%;
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    margin: 0 0 3rem 0;
    margin-top: -1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Filters Container - Removed (moved to separate page filters) */
/*
.filters-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.sort-filter, .category-filter, .sort-badge, .category-badge, .filter-label {
    Styles removed - not used in new design
}
*/

/* Ad Banner Section */
.ad-banner-section {
    margin: 2rem 0;
}

.ad-banner {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.ad-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.ad-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
}

.ad-content p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.ad-link {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background-color: white;
    color: #667EEA;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ad-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #667EEA;
}

/* Categories Overview Section */
.categories-overview {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.section-heading {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #8B5CF6);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.category-card-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    color: white;
    height: 100%;
}

.category-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card-mini:hover .category-icon {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.category-icon svg {
    color: white;
    stroke-width: 2;
}

.category-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.category-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Tools Section */
.tools-section {
    margin-top: 2rem;
}

/* Tools Sections Container */
.tools-sections {
    margin-top: 2rem;
}

.tools-subsection {
    margin-bottom: 3rem;
}

.subsection-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.subsection-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #8B5CF6);
    margin-top: 0.5rem;
    border-radius: 2px;
}

/* Responsive for tool cards */
@media (max-width: 575px) {
    .tool-header-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .tool-logo {
        width: 70px;
        height: 70px;
    }

    .tool-title {
        font-size: 1rem;
    }
}

/* Tool Cards */
.tool-card {
    background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #8B5CF6, #EC4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-header-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    overflow: visible;
}

.tool-logo .affiliate-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    transform: translate(50%, -50%);
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.tool-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tool-logo-large {
    position: relative;
    overflow: visible;
}

.tool-logo-large .affiliate-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    transform: translate(50%, -50%);
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.result-image {
    position: relative;
    overflow: visible;
}

.result-image .affiliate-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    transform: translate(50%, -50%);
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.tool-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-title {
    font-size: 1.1rem;
    margin: 0.5rem 0 0 0;
    flex: 1;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
}

.tool-title a {
    color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 0.25rem 0;
    display: block;
}

.tool-title a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.tool-description,
.tool-description-top {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.tool-description-top {
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tool-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tool-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-secondary);
    color: var(--text-color);
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.tool-category:hover {
    background-color: var(--primary-color);
    color: white;
}

.tool-pricing {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #D1FAE5;
    color: #065F46;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
}

.btn-visit {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-visit:hover {
    background-color: #2563EB;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Pagination */
.pagination-nav {
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    justify-content: center;
}

.page-link {
    display: block;
    padding: 0.625rem 1rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Category Header */
.category-header {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin-right: 0.5rem;
    color: var(--border-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.category-stats {
    margin-top: 1rem;
}

.stat-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--border-radius);
}

/* Tool Detail */
.tool-breadcrumb {
    margin-bottom: 1.5rem;
}

.tool-detail {
    margin-top: 2rem;
}

.tool-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-logo-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tool-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tool-info {
    flex: 1;
}

.tool-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-description-full {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tool-categories-list h5 {
    margin-bottom: 0.75rem;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-secondary);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.tool-body {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Sidebar */
.tool-sidebar {
    position: sticky;
    top: 100px;
}

.visit-card,
.info-card,
.share-card {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.visit-card {
    text-align: center;
}

.btn-visit-large {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.btn-visit-large:hover {
    background-color: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.visit-url {
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    word-break: break-all;
}

.info-card h4,
.share-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #D1FAE5;
    color: #065F46;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
}

.features-list {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-share {
    flex: 1;
    padding: 0.625rem 1rem;
    text-align: center;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-share:hover {
    opacity: 0.8;
}

.btn-twitter {
    background-color: #1DA1F2;
    color: white;
}

.btn-facebook {
    background-color: #1877F2;
    color: white;
}

.btn-linkedin {
    background-color: #0A66C2;
    color: white;
}

/* Search Page */
.search-header {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.search-query {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.search-stats {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.search-form-large {
    margin-top: 1.5rem;
}

.search-input {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-search-large {
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-search-large:hover {
    background-color: #2563EB;
}

.search-results mark {
    background-color: #FEF08A;
    padding: 0 0.25rem;
    border-radius: 2px;
}

/* No Results */
.no-results,
.no-tools {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
}

.no-results h3,
.no-tools h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.no-results p,
.no-tools p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Related Categories */
.related-categories {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comments-section {
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.comment-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.login-prompt {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
}

/* Authentication Forms */
.auth-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.auth-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.auth-body {
    padding: 2rem;
}

.auth-footer {
    padding: 1.5rem 2rem;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.auth-footer-text {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #2563EB;
    text-decoration: underline;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    background-color: var(--bg-primary);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-check-input {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    margin-top: 0.2rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-text {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.btn-auth {
    padding: 0.875rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-auth:hover {
    background-color: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Dropdown Menu Enhancements */
.dropdown-menu {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-primary);
    color: var(--primary-color);
}

.dropdown-item i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.user-avatar {
    text-align: center;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-md);
}

.user-info {
    margin-bottom: 1.5rem;
}

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--text-color);
    font-weight: 600;
}

.info-item span {
    color: var(--text-secondary);
}

.role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #D1FAE5;
    color: #065F46;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
}

.user-actions {
    margin-top: 1.5rem;
}

/* Comment Section */
.comment-form-wrapper {
    padding: 0.5rem 0;
}

.comment-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comment-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.comment-user-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.comment-user-details strong {
    color: var(--text-color);
    font-size: 1rem;
}

.comment-user-role {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background-color: #D1FAE5;
    color: #065F46;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
}

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.login-prompt-wrapper {
    text-align: center;
    padding: 1rem;
}

.login-prompt-wrapper i {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.login-prompt {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 1rem 0;
}

.login-prompt-wrapper .btn {
    margin-top: 1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.category-card {
    display: block;
    padding: 1.25rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.2s ease;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Related Tools */
.related-tools {
    margin-top: 4rem;
}

/* ================================
   FrontendLoginRegister Module Overrides
   ================================ */

/* Target the module form specifically within our auth-body container */
.auth-body form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hide module specific fieldsets/legends if they clutter the design */
.auth-body form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.auth-body form legend {
    display: none;
}

/* Style Inputs */
.auth-body form input[type="text"],
.auth-body form input[type="email"],
.auth-body form input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.auth-body form input[type="text"]:focus,
.auth-body form input[type="email"]:focus,
.auth-body form input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* Style Labels */
.auth-body form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Style Submit Button */
.auth-body form button[type="submit"],
.auth-body form input[type="submit"] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.auth-body form button[type="submit"]:hover,
.auth-body form input[type="submit"]:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Style Links (Forgot Password etc) */
.auth-body form a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.auth-body form a:hover {
    text-decoration: underline;
    color: #2563EB;
}

/* Error/Success Messages from Module */
.auth-body .FrontendFormsError,
.auth-body .FrontendFormsSuccess,
.auth-body .alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.auth-body .FrontendFormsError {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.auth-body .FrontendFormsSuccess {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Wrapper divs often used by module */
.auth-body form > div {
    margin-bottom: 1rem;
}
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

/* Footer */
.site-footer {
    background-color: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0 1.5rem;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-form .btn {
    padding: 0.625rem 1.25rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-form .btn:hover {
    background-color: #2563EB;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1rem;
    }

    .search-form {
        margin-left: 0;
        width: 100%;
        margin-top: 1rem;
    }

    .search-form .form-control {
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content-wrapper {
        padding: 0 20px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .ad-banner {
        padding: 1.5rem;
    }

    .categories-overview {
        padding: 1.5rem;
    }

    .tool-header {
        flex-direction: column;
        text-align: center;
    }

    .tool-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content-wrapper {
        padding: 0 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-divider {
        display: none;
    }

    .ad-banner {
        padding: 1.25rem;
    }

    .ad-content p {
        font-size: 1rem;
    }

    .categories-overview {
        padding: 1.25rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .tool-name {
        font-size: 1.75rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .no-results-actions {
        flex-direction: column;
    }
}

/* ============================================
   Additional Styles for Search Results
   ============================================ */

/* Result Cards */
.result-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.result-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.result-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.result-title-wrapper {
    flex: 1;
    min-width: 0;
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.result-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.result-article .result-type {
    background-color: #8B5CF6;
}

.result-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.result-title a {
    color: var(--text-color);
}

.result-title a:hover {
    color: var(--primary-color);
}

.result-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.result-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.result-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-secondary);
    color: var(--text-color);
    border-radius: 50px;
}

.result-pricing {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #D1FAE5;
    color: #065F46;
    font-weight: 500;
    border-radius: 50px;
}

.result-date {
    color: var(--text-secondary);
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
}

.status-active {
    background-color: #D1FAE5;
    color: #065F46;
}

.status-inactive {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* Tag Badge */
.tag-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-secondary);
    color: var(--text-color);
    font-size: 0.85rem;
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Article Styles */
.article-breadcrumb {
    margin-bottom: 1.5rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.article-meta svg {
    margin-right: 0.5rem;
}

.article-date {
    display: flex;
    align-items: center;
}

.article-category,
.article-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-featured-image {
    margin-bottom: 3rem;
    text-align: center;
}

.article-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.article-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.article-share {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-share h4 {
    margin-bottom: 1.5rem;
}

.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.article-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.article-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-content {
    padding: 1.5rem;
}

.article-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.article-card-title a {
    color: var(--text-color);
}

.article-card-title a:hover {
    color: var(--primary-color);
}

.article-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-card-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Tool Tags */
.tool-tags {
    margin-top: 1.5rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Price Content */
.price-content {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

/* Suggested Categories */
.suggested-categories {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.suggested-categories h4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .article-title {
        font-size: 1.75rem;
    }

    .article-excerpt {
        font-size: 1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .result-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .result-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .result-image {
        width: 70px;
        height: 70px;
    }

    .result-title {
        font-size: 1rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
