﻿/* Shared text labels */

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

    .eyebrow.dark {
        color: var(--blue);
    }

/* Shared buttons */

.btn {
    border-radius: 12px;
    font-weight: 750;
}

.btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
}

.btn-primary {
    border: none;
    background: linear-gradient(135deg, var(--blue), #0ea5e9);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.25);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #0284c7);
    }

.btn-outline-primary {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.28);
    background: #ffffff;
}

    .btn-outline-primary:hover {
        color: #ffffff;
        border-color: var(--blue);
        background: var(--blue);
    }

/* Shared section spacing */

.section {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-intro {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

    .section-intro h2 {
        margin-bottom: 1rem;
        font-size: clamp(2rem, 4vw, 3.35rem);
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -0.065em;
    }

    .section-intro p {
        color: #64748b;
        font-size: 1.08rem;
        line-height: 1.8;
    }

/* Shared priority labels */

.priority-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

    .priority-label.high {
        color: #fb7185;
    }

    .priority-label.medium {
        color: #facc15;
    }
