/* ============================================
   COMPETITION PAGE STYLES
   Limitless Roofing - Skill-Based Competition
   ============================================ */

/* ---------- Hero Banner (Editorial Split) ---------- */
.comp-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: calc(100vh - 95px);
    overflow: hidden;
}

.comp-hero-split {
    position: absolute;
    inset: 0;
    display: flex;
}

/* Left panel: 65% with before image + dark overlay + text */
.comp-hero-left {
    position: relative;
    width: 65%;
    height: 100%;
}

.comp-hero-left > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-hero-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0f172a 0%, rgba(15,23,42,0.95) 40%, rgba(15,23,42,0.7) 80%, rgba(15,23,42,0.3) 100%);
    z-index: 1;
}

.comp-hero-left-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px;
    max-width: 800px;
}

.comp-hero-tag {
    display: inline-block;
    background: #d3ad2c;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    width: fit-content;
}

.comp-hero-title {
    font-family: 'Epilogue', sans-serif;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 8px;
}

.comp-hero-title-line1 {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    min-height: 1.1em;
    white-space: nowrap;
}

.comp-hero-title-line2 {
    display: block;
    font-size: 7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #d3ad2c;
    min-height: 1.1em;
}

/* Typed.js cursor */
.comp-hero-title-line1 .typed-cursor,
.comp-hero-title-line2 .typed-cursor {
    display: inline;
    color: #d3ad2c;
    font-weight: 900;
}

/* Reveal container for content that fades in after typing */
.comp-hero-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.comp-hero-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.comp-hero-price {
    font-family: 'Epilogue', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.comp-hero-price-accent {
    color: #d3ad2c;
}

.comp-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 32px;
}

.comp-hero-badges {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.comp-hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.comp-hero-badge .material-symbols-outlined {
    color: #d3ad2c;
    font-size: 1.3rem;
    font-variation-settings: 'FILL' 1;
}

.comp-hero-badge-text {
    display: flex;
    flex-direction: column;
}

.comp-hero-badge-text span {
    font-family: 'Manrope', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.4;
}

.comp-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.comp-hero-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d3ad2c 0%, #b3981f 100%);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 16px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(211,173,44,0.3);
}

.comp-hero-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(211,173,44,0.4);
    color: #fff;
    text-decoration: none;
}

.comp-hero-btn-link {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-hero-btn-link:hover {
    color: #d3ad2c;
    text-decoration: none;
}

/* Before / After ghost labels */
.comp-hero-before-label {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 20;
    font-family: 'Epilogue', sans-serif;
    color: rgba(255,255,255,0.25);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Right panel: 35% after image */
.comp-hero-right {
    position: relative;
    width: 35%;
    height: 100%;
    border-left: 4px solid rgba(255,255,255,0.15);
}

.comp-hero-right > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-hero-after-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 20;
    font-family: 'Epilogue', sans-serif;
    color: rgba(255,255,255,0.45);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* ---------- Buttons ---------- */
.btn-comp-primary {
    background-color: #d3ad2c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-comp-primary:hover {
    background-color: #b3981f;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-comp-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-comp-outline:hover {
    background: #fff;
    color: #333;
    text-decoration: none;
}

/* ---------- "What You Can Win" ---------- */
.comp-prize-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.comp-section-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.comp-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.comp-prize-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

.comp-prize-card {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
}

.comp-prize-card i {
    font-size: 2.5rem;
    color: #d3ad2c;
    margin-bottom: 12px;
}

.comp-prize-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.comp-prize-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.comp-prize-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

/* ---------- How It Works + Skill Question ---------- */
.comp-how-section {
    padding: 50px 20px;
    background: #f5f5f5;
}

.comp-how-grid {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.comp-how-left {
    flex: 1;
    min-width: 300px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 35px;
    color: #fff;
}

.comp-how-left h2 {
    font-size: 1.1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.comp-how-left h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
}

.comp-how-left h3 span {
    color: #d3ad2c;
}

.comp-steps-list {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.comp-step {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.comp-step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #d3ad2c;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.comp-step-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.comp-step-desc {
    font-size: 0.8rem;
    color: #aaa;
}

.comp-how-note {
    background: rgba(211, 173, 44, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #d3ad2c;
}

.comp-how-note i {
    margin-right: 6px;
}

/* Skill Question */
.comp-how-right {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    border: 2px solid #d3ad2c;
}

.comp-question-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d3ad2c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.comp-question-sublabel {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
}

.comp-question-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.comp-answer-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comp-answer-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.comp-answer-option:hover {
    border-color: #d3ad2c;
    background: #fffbef;
}

.comp-answer-option.selected {
    border-color: #d3ad2c;
    background: #d3ad2c;
    color: #fff;
}

.comp-answer-key {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    flex-shrink: 0;
    transition: all 0.2s;
}

.comp-answer-option.selected .comp-answer-key {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.comp-answer-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ---------- Stats Bar ---------- */
.comp-stats-bar {
    background: #1a1a1a;
    padding: 30px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.comp-stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.comp-stat {
    text-align: center;
}

.comp-stat-icon {
    font-size: 1.5rem;
    color: #d3ad2c;
    margin-bottom: 8px;
}

.comp-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.comp-stat-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Entry Form ---------- */
.comp-form-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9f6f2 0%, #f1e8da 100%);
}

.comp-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comp-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 5px;
}

.comp-form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.comp-form-group {
    margin-bottom: 20px;
}

.comp-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.comp-form-group input,
.comp-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
}

.comp-form-group input:focus,
.comp-form-group select:focus {
    border-color: #d3ad2c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(211,173,44,0.15);
}

.comp-form-row {
    display: flex;
    gap: 15px;
}

.comp-form-row .comp-form-group {
    flex: 1;
}

.comp-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comp-qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #d3ad2c;
    background: #fff;
    color: #d3ad2c;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.comp-qty-btn:hover {
    background: #d3ad2c;
    color: #fff;
}

.comp-qty-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    min-width: 40px;
    text-align: center;
}

.comp-price-display {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    margin: 20px 0;
}

.comp-price-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.comp-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #d3ad2c;
}

/* ---------- Terms & Conditions Checkbox ---------- */
.comp-terms-group {
    margin-bottom: 20px;
    text-align: center;
}

.comp-terms-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.comp-terms-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d3ad2c;
    cursor: pointer;
}

.comp-terms-label a {
    color: #d3ad2c;
    text-decoration: underline;
    font-weight: 600;
}

.comp-terms-label a:hover {
    color: #b3981f;
}

.comp-terms-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

.comp-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    background: #d3ad2c;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.comp-submit-btn:hover {
    background: #b3981f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211,173,44,0.4);
}

.comp-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.comp-form-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.comp-form-group.has-error input,
.comp-form-group.has-error select {
    border-color: #dc3545;
}

.comp-form-group.has-error .comp-form-error {
    display: block;
}

/* ---------- Info Boxes (Winner Selection + Cash Alternative) ---------- */
.comp-info-section {
    padding: 50px 20px;
    background: #fff;
}

.comp-info-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.comp-info-box {
    flex: 1;
    min-width: 280px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.comp-info-box i {
    font-size: 2rem;
    color: #d3ad2c;
    margin-bottom: 12px;
}

.comp-info-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.comp-info-box p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.comp-info-box .comp-info-date {
    display: block;
    font-weight: 700;
    color: #d3ad2c;
    margin-top: 10px;
    font-size: 1rem;
}

/* ---------- "Why Choose" / Reviews ---------- */
.comp-reviews-section {
    padding: 40px 20px;
    background: #f5f5f5;
}

.comp-reviews-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e0e0e0;
}

.comp-reviews-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
}

.comp-reviews-stars {
    color: #d3ad2c;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.comp-reviews-rating {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.comp-reviews-count {
    font-size: 0.9rem;
    color: #666;
}

/* ---------- Sticky CTA Bar ---------- */
.comp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d3ad2c;
    padding: 12px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.comp-sticky-cta.visible {
    transform: translateY(0);
}

.comp-sticky-cta-text {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95rem;
}

.comp-sticky-cta-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.comp-sticky-cta-btn:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

/* ---------- No Competition State ---------- */
.comp-no-active {
    text-align: center;
    padding: 100px 20px;
}

.comp-no-active i {
    font-size: 4rem;
    color: #d3ad2c;
    margin-bottom: 20px;
}

.comp-no-active h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.comp-no-active p {
    color: #666;
    font-size: 1.1rem;
}

/* ---------- Form Message ---------- */
.comp-form-message {
    display: none;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.comp-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.comp-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .comp-hero-split {
        flex-direction: column;
    }

    .comp-hero-left {
        width: 100%;
        min-height: 70vh;
    }

    .comp-hero-right {
        width: 100%;
        min-height: 30vh;
        border-left: none;
        border-top: 4px solid rgba(255,255,255,0.15);
    }

    .comp-hero-left-content {
        padding: 80px 30px 40px;
        text-align: center;
        align-items: center;
    }

    .comp-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .comp-hero-badges {
        justify-content: center;
    }

    .comp-hero-actions {
        justify-content: center;
    }

    .comp-hero-before-label {
        right: 30px;
        bottom: 20px;
        font-size: 1.2rem;
    }

    .comp-hero-after-label {
        left: 30px;
        bottom: 20px;
        font-size: 1.2rem;
    }

    .comp-stats-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .comp-hero {
        min-height: auto;
    }

    .comp-hero-title-line1 {
        font-size: 2.4rem;
    }

    .comp-hero-title-line2 {
        font-size: 4rem;
    }

    .comp-hero-price {
        font-size: 2rem;
    }

    .comp-hero-left-content {
        padding: 70px 20px 30px;
    }

    .comp-how-grid {
        flex-direction: column;
    }

    .comp-steps-list {
        flex-direction: column;
        align-items: center;
    }

    .comp-form-row {
        flex-direction: column;
        gap: 0;
    }

    .comp-info-grid {
        flex-direction: column;
    }

    .comp-prize-grid {
        flex-direction: column;
        align-items: center;
    }

    .comp-stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .comp-sticky-cta {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
    }

    .comp-form-container {
        padding: 25px 20px;
    }

    .comp-section-title {
        font-size: 1.5rem;
    }
}

/* ---------- Terms & Conditions Page ---------- */
.comp-terms-page {
    padding: 40px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.comp-terms-container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d3ad2c;
}

.comp-terms-section {
    margin-bottom: 25px;
}

.comp-terms-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.comp-terms-section p,
.comp-terms-section li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.comp-terms-section ul {
    padding-left: 20px;
    margin: 0;
}

.comp-terms-section ul ul {
    margin-top: 5px;
}

.comp-terms-back {
    margin-top: 40px;
    text-align: center;
}

/* ---------- Paused Banner ---------- */
.comp-paused-banner {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 2px solid #e65100;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 700px;
}

.comp-paused-banner i {
    font-size: 3rem;
    color: #e65100;
    margin-bottom: 15px;
    display: block;
}

.comp-paused-banner h2 {
    color: #e65100;
    margin-bottom: 10px;
    font-weight: 700;
}

.comp-paused-banner p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}
