/*
   HDL2Chips Premium Blog Stylesheet (Compact & Modern)
   Greater UI Design System compliant (Glassmorphism + Bento Grid + Cyber-Blue Accent)
*/

/* Blog Hero Section */
.blog-hero {
    position: relative;
    padding: 30px 24px 20px;
    text-align: center;
    background: transparent;
}

.blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--primary) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 1.5rem !important;
        letter-spacing: -0.3px;
    }
}

.blog-hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar (Compact) */
.blog-search {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 2px 4px 2px 14px;
    box-shadow: var(--shadow);
    align-items: center;
}

.blog-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.blog-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 0.88rem;
    padding: 6px 0;
}

.blog-search button {
    background: var(--primary);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog-search button i {
    font-size: 0.8rem;
}

/* Filters (Compact) */
.blog-filters {
    padding: 15px 24px 5px;
    overflow-x: auto;
    white-space: nowrap;
}

.blog-filters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .blog-filters-container {
        justify-content: flex-start !important;
        padding-left: 16px;
        padding-right: 16px;
    }
    .blog-filters {
        padding: 15px 0 5px !important;
    }
}

.category-filter {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.04);
}

.category-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.dark-mode .category-filter.active {
    color: #000;
    font-weight: 700;
}

/* Blog Grid */
.blog-section {
    padding: 20px 16px 50px;
}

.blog-container {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
}

/* Compact Card Styling */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

/* Remove giant featured layout to make it look clean and uniform */
.blog-card.featured {
    grid-column: auto;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.06);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 110px; /* Reduced image height */
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 10px; /* Tighter padding */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.blog-category {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: 3px;
}

.blog-category.verilog { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.blog-category.systemverilog { background: rgba(167, 139, 250, 0.1); color: #a78bfa; }
.blog-category.uvm { background: rgba(244, 114, 182, 0.1); color: #f472b6; }
.blog-category.fpga { background: rgba(56, 189, 248, 0.1); color: #38bdf8; }
.blog-category.asic { background: rgba(45, 212, 191, 0.1); color: #2dd4bf; }
.blog-category.tutorial { background: rgba(251, 191, 36, 0.1); color: #fbbf24; }
.blog-category.tcl { background: rgba(52, 211, 153, 0.1); color: #34d399; }

.blog-date {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.blog-title {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 4px;
    font-size: 0.88rem; /* Slightly smaller font */
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.5em; /* Constrains title height */
}

.blog-card.featured .blog-title {
    font-size: 0.88rem;
}

.blog-excerpt {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7em; /* Constrains excerpt height */
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode .author-avatar {
    color: #000;
}

.author-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-main);
}

.read-time {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.read-more i {
    transition: transform 0.2s ease;
}

.blog-card:hover .read-more i,
.read-more:hover i {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

/* Newsletter Section (Compact) */
.newsletter-section {
    background: transparent;
    padding: 35px 24px;
    text-align: center;
}

.newsletter-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.newsletter-section p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-main);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
}

.dark-mode .newsletter-form button {
    color: #000;
}

/* Blog Post Detail Page Styles (Highly Compact) */
.post-container {
    max-width: 1400px;
    width: 96%;
    margin: 15px auto;
    padding: 0 16px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.back-btn i {
    transition: transform 0.25s ease;
}

.back-btn:hover {
    color: var(--text-main);
}

.back-btn:hover i {
    transform: translateX(-4px);
}

.blog-header {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.blog-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-meta-info {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    align-items: center;
}

.blog-meta-info span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-meta-info span i {
    color: var(--primary);
    font-size: 0.8rem;
}

.content-section {
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.content-section p {
    margin-bottom: 12px;
}

.tech-highlight {
    background: rgba(59, 130, 246, 0.06);
    color: var(--primary);
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95em;
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.content-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-top: 24px;
    margin-bottom: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.content-section h2::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1rem;
    background: var(--primary);
    border-radius: 2px;
}

/* Compact Premium Company Table */
.company-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0;
    font-size: 0.82rem;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.company-table th, .company-table td {
    padding: 8px 12px;
    text-align: left;
}

.company-table th {
    background: var(--bg-surface);
    color: var(--text-main);
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-table td {
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.company-table tr:last-child td {
    border-bottom: none;
}

.company-table td strong {
    color: var(--text-main);
    font-weight: 700;
}

.company-table tr {
    transition: background-color 0.2s ease;
}

.company-table tr:hover td {
    background: rgba(59, 130, 246, 0.04);
    color: var(--text-main);
}

/* Section Headings for Reference Guides */
.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 32px 0 8px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* Table Wrapper for Scrollable Tables */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 12px 0 20px 0;
}

/* Command Reference Table */
.cmd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.cmd-table th {
    background: var(--bg-surface);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--primary);
}

.cmd-table td {
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: top;
}

.cmd-table tr:last-child td {
    border-bottom: none;
}

.cmd-table td:first-child {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.82rem;
    color: var(--primary);
    white-space: nowrap;
    font-weight: 600;
}

.cmd-table tr:hover td {
    background: rgba(59, 130, 246, 0.04);
}

/* Beautiful Question Cards (Compact) */
.q-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    border-left-color: var(--primary);
}

.q-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.35;
}

.q-num {
    background: var(--primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 3px;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dark-mode .q-num {
    color: #000;
    font-weight: 900;
}

.code-block {
    background: var(--bg-surface);
    color: var(--text-main);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.78rem;
    padding: 10px 14px;
    border-radius: 6px;
    overflow-x: auto;
    white-space: pre;
    margin: 10px 0;
    border: 1px solid var(--border);
    line-height: 1.4;
}

/* Two-Box Split Layout (Article + Sidebar) */
.post-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-top: 15px;
}

.post-main-content {
    flex: 1;
    min-width: 0; /* Prevents overflow issues with tables */
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.post-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 0;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-title i {
    color: var(--primary);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 2px 0;
}

.blog-sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-sidebar-item:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.04);
    transform: translateY(-1px);
}

.blog-sidebar-item-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.blog-sidebar-item-body {
    flex: 1;
    min-width: 0;
}

.blog-sidebar-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 820px) {
    .post-layout {
        flex-direction: column;
    }
    .post-sidebar {
        width: 100%;
        position: static;
        margin-top: 20px;
    }
}

/* Sidebar Widgets & Extras */
.sidebar-widget {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.widget-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin-bottom: 4px;
    margin-top: 0;
}

/* Sidebar Newsletter Form */
.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 8px;
    color: var(--text-main);
    font-size: 0.7rem;
    outline: none;
    transition: all 0.2s ease;
}

.sidebar-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px;
    font-weight: 700;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dark-mode .sidebar-btn {
    color: #000;
    font-weight: 900;
}

.sidebar-btn:hover {
    filter: brightness(0.9);
}

/* Sidebar Social Buttons (YouTube & Discord) */
.sidebar-socials {
    display: flex;
    gap: 6px;
}

.social-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 4px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}

.discord-btn {
    background: #5865F2; /* Official Discord Blue */
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-1px);
}

.youtube-btn {
    background: #FF0000; /* Official YouTube Red */
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-1px);
}

.reddit-btn {
    background: #FF4500;
}

.reddit-btn:hover {
    background: #CC3700;
    transform: translateY(-1px);
}

/* Sidebar Accordion */
.sidebar-accordion {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-accordion-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-surface);
}

.sidebar-accordion-item[open] {
    background: var(--bg-card);
}

.sidebar-accordion-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    list-style: none;
    user-select: none;
}

.sidebar-accordion-header::-webkit-details-marker {
    display: none;
}

.sidebar-accordion-header .accordion-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.sidebar-accordion-header .accordion-arrow {
    margin-left: auto;
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.sidebar-accordion-item[open] .accordion-arrow {
    transform: rotate(180deg);
}

.sidebar-accordion-body {
    padding: 2px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-accordion-item .blog-sidebar-item {
    padding: 6px 8px;
    font-size: 0.68rem;
}

.sidebar-accordion-item .blog-sidebar-item-icon {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
}

.sidebar-accordion-item .blog-sidebar-item-title {
    font-size: 0.68rem;
}

/* Responsive Two Column Layout for Mobile Viewports */
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .blog-card {
        border-radius: 8px !important;
    }
    .blog-image {
        height: 90px !important; /* Elegant compact height */
    }
    .blog-content {
        padding: 8px !important;
    }
    .blog-meta {
        margin-bottom: 2px !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
    }
    .blog-category {
        font-size: 0.55rem !important;
        padding: 1px 4px !important;
    }
    .blog-date {
        font-size: 0.55rem !important;
    }
    .blog-title {
        font-size: 0.76rem !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
        height: 2.4em !important;
    }
    .blog-excerpt {
        display: none !important; /* Hide excerpt on mobile for an ultra-clean, non-cluttered grid card */
    }
    .blog-footer {
        padding-top: 6px !important;
        border-top: 1px solid var(--border) !important;
    }
    .blog-author {
        display: none !important; /* Hide author on extremely tight grid cards */
    }
    .read-more {
        font-size: 0.65rem !important;
        margin-top: 0 !important;
    }
}

/* Detailed Article Page Mobile Layout & Overflow Fixes */
@media (max-width: 768px) {
    .post-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin: 10px auto !important;
        box-sizing: border-box !important;
    }
    .post-main-content {
        padding: 12px 14px !important;
        border-radius: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Lock bounds and prevent horizontal blowout */
    }
    .company-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .code-block {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
    }
    .content-section p, 
    .content-section li,
    .content-section h1,
    .content-section h2 {
        max-width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 600px) {
    .blog-header h1 {
        font-size: 1.25rem !important; /* Smaller size for cleaner fit */
    }
    .content-section {
        font-size: 0.82rem !important; /* Slightly smaller reading font for premium mobile fit */
    }
    .q-card {
        padding: 10px 14px !important;
        margin-bottom: 12px !important;
    }
    .q-title {
        font-size: 0.88rem !important;
    }
}
