/* =============================================
   MATH-TOOL-STYLE.CSS â€” PREMIUM MATH DESIGN
   ============================================= */

:root {
    --tool-bg: var(--surface);
    --tool-border: var(--border-solid);
    --tool-shadow: var(--shadow-lg);
    --tool-accent: #6366f1;
    /* Indigo */
    --tool-accent-2: #8b5cf6;
    /* Violet */
    --tool-radius: 24px;
    --tool-input-bg: var(--bg-2);
    --tool-max-width: 1400px;
    --card-max-width: 1100px;
}

[data-theme="light"] {
    --tool-bg: #ffffff;
    --tool-input-bg: #f8fafc;
    --tool-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* Background Refinement */
body {
    background-attachment: fixed;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 20%);
}

.container {
    max-width: var(--tool-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

body main.container {
    max-width: var(--tool-max-width);
    width: 100%;
    margin: 0 auto;
}

/* Base Card Styling */
.card {
    background: var(--tool-bg);
    border: 1px solid var(--tool-border);
    border-radius: var(--tool-radius);
    padding: 2.25rem 2.5rem;
    box-shadow: var(--tool-shadow);
    margin: 0 auto 3rem auto;
    max-width: var(--card-max-width);
    width: 100%;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--t);
}

.card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 6px;
    background: linear-gradient(90deg, var(--tool-accent), var(--tool-accent-2), #10b981);
    border-radius: var(--tool-radius) var(--tool-radius) 0 0;
}

.card-header {
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
    /* Minimal horizontal padding for text readability only */
}

.card-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
    letter-spacing: -0.04em;
    color: var(--text-main);
    line-height: 1.1;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    /* Increased to allow wider text flow */
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Form Layout */
.main-layout {
    margin-top: 2.5rem;
}

.calc-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: end;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Input Fields */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-field,
.math-input,
.card input[type="number"],
.card input[type="text"],
.card select {
    width: 100%;
    height: 60px;
    padding: 0 1.25rem;
    background: var(--tool-input-bg);
    border: 1px solid var(--border-solid);
    border-radius: 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--t);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-field:focus,
.math-input:focus,
.card input:focus,
.card select:focus {
    border-color: var(--tool-accent);
    background: var(--surface-2);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.01);
    transform: translateY(-1px);
}

/* Fix for narrow math inputs (e.g. Scientific Notation rows) */
.math-input[style*="width"],
.card input[style*="width"] {
    padding: 0 0.75rem !important;
    text-align: center;
}

.math-input-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.math-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.math-category-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 2.5rem 0 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-solid);
    padding-bottom: 0.5rem;
}

.input-with-prefix {
    padding-left: 3.2rem;
}

.input-prefix {
    position: absolute;
    left: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tool-accent);
    pointer-events: none;
}

.input-with-suffix {
    padding-right: 3.5rem;
}

.input-suffix {
    position: absolute;
    right: 1.5rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    pointer-events: none;
}

/* Primary Button */
.btn {
    grid-column: span 2;
    height: 60px;
    background: linear-gradient(135deg, var(--tool-accent), var(--tool-accent-2));
    color: white !important;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    transition: var(--t);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    margin-top: 0.5rem;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
    filter: brightness(1.05);
}

/* Result Box Styling */
.result-box,
.math-result-box {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-solid);
    animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-main,
.math-result-main {
    background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
    border: 1px solid var(--border-2);
    border-radius: 32px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.result-label,
.math-result-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.result-value,
.math-result-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--tool-accent);
    line-height: 1;
    font-family: var(--font-display);
    margin: 0.5rem 0;
}


.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.result-item {
    background: var(--surface-2);
    border: 1px solid var(--border-solid);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--t);
    text-align: center;
}

.result-item:hover {
    transform: translateY(-5px);
    border-color: var(--tool-accent);
    background: var(--surface-3);
    box-shadow: var(--shadow-sm);
}

.res-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.res-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

/* =============================================
   PREMIUM PRODUCT SECTIONS (ABOUT & FAQ)
   ============================================= */

.about-new-section {
    padding: 0 0 8rem;
    width: 100%;
}

.about-divider-bar {
    width: 100%;
    background: var(--bg-2);
    padding: 2.5rem 0;
    margin-bottom: 5rem;
    border-top: 1px solid var(--border-solid);
    border-bottom: 1px solid var(--border-solid);
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .about-divider-bar {
    background: rgba(10, 13, 20, 0.8);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.05);
}

.divider-bar-inner {
    max-width: var(--tool-max-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 0 4rem;
    flex-wrap: wrap;
}

.divider-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 200px;
    /* Reduced to allow 4 in a row more easily */
    justify-content: center;
    border-right: 1px solid var(--border-solid);
}

.divider-item:last-child {
    border-right: none;
}

.divider-icon-box {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tool-accent);
    font-size: 1.1rem;
    transition: var(--t);
}

.divider-item:hover .divider-icon-box {
    background: var(--tool-accent);
    color: white;
    transform: translateY(-3px);
}

.divider-text-box {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.divider-title {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 800;
}

.divider-subtitle {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

.about-new-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0;
    /* Absolute zero */
}

.about-hero-card {
    background: var(--surface);
    border: 1px solid var(--border-solid);
    border-radius: 24px;
    /* Added radius back */
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    margin: 0;
    /* Absolute zero */
    width: 100%;
}

[data-theme="dark"] .about-hero-card {
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border-color: rgba(255, 255, 255, 0.05);
}

.about-hero-badge {
    background: var(--bg-3);
    color: var(--tool-accent);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--border-solid);
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 800px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 2rem;
    /* Proper gap for luxury cards */
    padding: 0;
}

.about-feature-box {
    background: var(--surface-2);
    border: 1px solid var(--border-solid);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.about-feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--tool-accent);
    background: var(--surface-3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--bg-3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--tool-accent);
}

.about-feature-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
}

.about-feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.about-details-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    /* Proper desktop gap */
    align-items: stretch;
    padding: 0;
}

.about-details-left {
    background: var(--surface);
    border: 1px solid var(--border-solid);
    border-radius: 24px;
    padding: 3rem 1.5rem;
}

[data-theme="dark"] .about-details-left {
    background: var(--bg-2);
}

.details-tag {
    color: var(--tool-accent-2);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    display: block;
}

.about-details-left h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.about-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.about-step-item {
    display: flex;
    gap: 1.25rem;
}

.step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--bg-2);
    border: 1px solid var(--border-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--tool-accent-2);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.benefits-card {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 24px;
    padding: 3rem 1.5rem;
    color: white;
    flex: 1;
}

.benefits-card h4 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-item i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    flex-direction: row;
    /* Horizontal as requested */
    justify-content: space-around;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-2);
    border: 1px solid var(--border-solid);
    border-radius: 100px;
    /* Branded trust-bar shape */
    margin-top: 2rem;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
}

.trust-strip-item i {
    width: 28px;
    height: 28px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tool-accent);
    font-size: 0.8rem;
}

/* FAQ Refined */
.faq-section-new {
    padding: 4rem 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
}

.faq-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-eyebrow {
    color: var(--tool-accent-2);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.faq-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-top: 1rem;
}

.faq-list-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-new {
    background: var(--bg-2);
    border: 1px solid var(--border-solid);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--t);
}

.faq-header-new {
    width: 100%;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 700;
}

.faq-body-new {
    padding: 0 2rem 1.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item-new:hover {
    border-color: var(--tool-accent);
    background: var(--surface-2);
}

.faq-item-new.active .faq-body-new,
.faq-item-new.active .faq-answer {
    opacity: 1;
}

.faq-item-new.active .faq-chevron {
    background: var(--tool-accent);
    color: white;
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .about-details-layout {
        grid-template-columns: 1fr;
    }

    .divider-bar-inner {
        padding: 0 2rem;
    }

    .divider-item {
        border: none;
        justify-content: flex-start;
    }
}

@media (min-width: 1200px) {
    .divider-bar-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .divider-item {
        min-width: 0;
    }
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Charts Section */
.chart-section {
    margin-top: 4rem;
    background: var(--surface);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-solid);
}

.chart-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chart-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
}

.chart-box {
    background: var(--bg-2);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-solid);
}

/* Responsive Layout Refinements â€” Ultra Expansive */
@media (max-width: 1592px) {
    .container {
        max-width: 100%;
        padding: 0 0.5rem;
        /* Ultra-minimal side space */
    }

    .card {
        max-width: 100%;
        /* Full width */
        padding: 1.5rem 2rem;
        margin: 1.5rem auto 3rem;
        /* Kept radius for high-res tablets */
    }

    .about-hero-card {
        margin: 0 0.5rem;
        /* Near-zero side margin */
        padding: 2.5rem 1.5rem;
    }

    .about-features-grid,
    .about-details-layout {
        padding: 0 0.5rem;
        /* Near-zero side padding */
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .chart-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.35rem !important;
    }

    .main-layout {
        padding: 0;
    }

    .card {
        padding: 1.25rem 0.75rem !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        margin: 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        backdrop-filter: none;
    }

    .breadcrumb {
        padding: 0 0.75rem;
        margin: 1.5rem 0 1rem;
        font-size: 0.8rem;
    }

    .calc-form,
    #metric-inputs,
    #imperial-inputs {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .form-group,
    .form-group.full-width,
    .btn {
        grid-column: span 1 !important;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .card-desc {
        font-size: 0.9rem;
    }

    .input-field {
        height: 65px;
        font-size: 1.15rem;
        border-radius: 16px;
    }

    .btn {
        height: 60px;
        font-size: 1.15rem;
        width: 100% !important;
        margin: 1.5rem 0 0 !important;
    }

    .result-main,
    .math-result-main {
        padding: 2rem 1rem;
        border-radius: 24px;
        background: linear-gradient(145deg, var(--bg-2), rgba(99, 102, 241, 0.05));
    }

    .result-value,
    .math-result-value {
        font-size: 3rem;
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-item {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    /* About Section Mobile */
    .about-divider-bar {
        padding: 1rem 0;
    }

    .divider-bar-inner {
        padding: 0 0.75rem;
    }

    .about-hero-card {
        padding: 2rem 1rem;
    }

    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-details-layout {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
}

/* =============================================
   ULTRA-MOBILE OPTIMIZATION (STUNNING AESTHETICS)
   ============================================= */
@media (max-width: 546px) {
    /* HERO TITLE - Maximum Impact */
    h1, .hero-title, .card-title, .hero-title span { font-size: 2.1rem !important; letter-spacing: -0.03em !important; line-height: 1.1 !important; }
    .hero-subtitle { font-size: 1.05rem !important; line-height: 1.6 !important; opacity: 1; }
    .hero-eyebrow { font-size: 0.9rem !important; font-weight: 700 !important; }

    /* Other Typography (Balanced) */
    h2, .section-title, .category-title { font-size: 1.4rem !important; letter-spacing: -0.01em !important; }
    h3 { font-size: 1.2rem !important; }
    h4 { font-size: 1.05rem !important; }
    p, .footer-brand p, .calc-card p, .card-desc { font-size: 0.9rem !important; line-height: 1.6 !important; opacity: 1; }
    a, .nav-links a, .footer-col a, label, .input-label, .form-label, span, .breadcrumb { font-size: 0.85rem !important; }

    /* Spacing & Layout Optimization */
    .container, .navbar-inner, .hero, .footer-inner, .faq-section-wrap, .tool-container, .card {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero { padding-top: 2rem !important; padding-bottom: 2rem !important; min-height: auto !important; }
    .calc-grid, .grid, .calc-form { gap: 1rem !important; }
    .form-group { gap: 0.4rem !important; }
    
    /* Card & Component Refinement */
    .calc-card, .card, .tool-container, .result-box, .result-main, .result-item {
        padding: 1rem !important;
        border-radius: 14px !important;
        margin-bottom: 0.85rem !important;
    }
    
    .card-header { margin-bottom: 1.25rem !important; }
    .result-box { margin-top: 1.5rem !important; padding-top: 1.5rem !important; }

    /* Form Elements */
    .input-field, .search-bar, select {
        height: 44px !important;
        font-size: 0.95rem !important;
        padding: 0 0.85rem !important;
        border-radius: 10px !important;
    }

    .btn-primary, .btn-ghost, .btn-calculate, .btn-premium {
        height: 46px !important;
        padding: 0 1.25rem !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 0.4rem !important;
    }

    /* Icon & Visual Scaling */
    .category-icon, .card-icon-wrap, .logo-icon, .divider-icon-box, .feature-icon-wrap, .step-num {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 1rem !important;
    }
    
    .logo-text { font-size: 1.1rem !important; }
    
    /* Result Specifics */
    .result-value { font-size: 2.2rem !important; }
    .result-label, .res-label { font-size: 0.75rem !important; }
}

