﻿/* =========================================================
   COMPETITIONS – SHARED STYLES
   Used by: All Competitions pages
   ========================================================= */

/* ===== PAGE LAYOUT ===== */
.content-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

/* ===== HEADINGS ===== */
.heading {
    color: #003399;
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.subheading {
    color: #003399;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

/* ===== PARAGRAPHS ===== */
.paragraph {
    font-size: 1.06rem;
    line-height: 1.85;
    color: #000000;
}

    .paragraph.left {
        text-align: left;
    }

/* ===== DIVIDERS ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #c7d2fe, transparent);
    margin: 2rem 0;
}

/* ===== TIP CARDS ===== */
.tip-card {
    background: #ffffff;
    border: 2px solid #003399;
    max-width: 820px;
    margin: 1.25rem auto;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
}

.card-title {
    color: #003399;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

/* ===== SMALL TEXT ===== */
.small-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Lists inside tip cards */
.tip-card ul.small-text {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

    .tip-card ul.small-text li {
        margin-bottom: 0.4rem;
    }

/* ===== JUMP / LINK LIST ===== */
.jump-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .jump-list li {
        margin: 0.4rem 0;
    }

    .jump-list a {
        color: #003399;
        font-weight: 700;
        text-decoration: none;
    }

        .jump-list a:hover {
            text-decoration: underline;
        }

/* ===== ACTION LINKS ===== */
.activity-meta {
    margin-top: 0.6rem;
    font-size: 0.95rem;
}

    .activity-meta a {
        color: #003399;
        font-weight: 700;
        text-decoration: none;
    }

        .activity-meta a:hover {
            text-decoration: underline;
        }

/* =========================================================
   COMPETITIONS – CATEGORY LIST
   (Match HiCap District List Style)
   ========================================================= */

.competitions-page .category-list {
    margin-left: 1.15rem; /* same as HiCap */
    margin-top: 0.5rem;
}

    .competitions-page .category-list li {
        margin: 0.65rem 0; /* same spacing as HiCap */
    }

    .competitions-page .category-list a {
        color: #003399; /* same blue */
        font-weight: 700; /* same weight */
        font-size: 1.06rem; /* same as .paragraph */
        text-decoration: none;
    }

        .competitions-page .category-list a:hover,
        .competitions-page .category-list a:focus-visible {
            text-decoration: underline;
        }
