﻿/* metrology.css — styles for The Reference Model page */
/* metrology.css — styles for The Metrology of Timely Software Product Delivery page */

.metrology-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 20px 40px;
    color: #1f1f1f;
}

    .metrology-page h1 {
        margin: 8px 0 20px;
        font-size: 2.2rem;
        line-height: 1.2;
        color: #0b3d91;
    }

    .metrology-page h2 {
        margin: 0 0 16px;
        font-size: 1.55rem;
        line-height: 1.3;
        color: #0b3d91;
    }

    .metrology-page h3 {
        margin: 0 0 12px;
        font-size: 1.3rem;
        line-height: 1.3;
        color: #0b3d91;
    }

    .metrology-page p {
        margin: 0 0 16px;
        font-size: 1.08rem;
        line-height: 1.75;
    }

.metrology-epigraph {
    max-width: 820px;
    margin: 0 auto 20px;
    padding: 18px 20px;
    border-left: 4px solid #d4af37;
    background: #f8f9fc;
    border-radius: 6px;
    text-align: center;
}

    .metrology-epigraph p {
        margin: 0 0 8px;
        font-size: 1.12rem;
        line-height: 1.7;
    }

        .metrology-epigraph p:last-child {
            margin-bottom: 0;
        }

.metrology-section {
    margin-bottom: 8px;
}

.metrology-highlight {
    font-weight: 700;
    color: #111;
}

.metrology-note {
    margin-top: 8px;
    padding: 12px 14px;
    background: #fff8dc;
    border: 1px solid #e6d58a;
    border-radius: 6px;
    font-size: 0.98rem;
    line-height: 1.65;
}

.section-divider {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid #d9d9d9;
}

.metrology-cta {
    margin: 34px 0 10px;
    padding: 28px 22px;
    text-align: center;
    background: #f5f7fb;
    border: 2px solid #0b3d91;
    border-radius: 10px;
}

    .metrology-cta p {
        max-width: 760px;
        margin: 0 auto 18px;
    }

.cta-button-container {
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    min-width: 220px;
    padding: 14px 24px;
    background: #ffd400;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #111;
    border-radius: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

    .cta-button:hover,
    .cta-button:focus {
        background: #ffdf33;
        color: #111;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    }

    .cta-button:active {
        transform: translateY(0);
        box-shadow: none;
    }

@media (max-width: 768px) {
    .metrology-page {
        padding: 20px 14px 32px;
    }

        .metrology-page h1 {
            font-size: 1.8rem;
        }

        .metrology-page h2 {
            font-size: 1.35rem;
        }

        .metrology-page p,
        .metrology-epigraph p {
            font-size: 1rem;
            line-height: 1.7;
        }

    .metrology-cta {
        padding: 22px 16px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
    }
}