/* Measure Grid */
.measure-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.measure-card {
    grid-column: span 12;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .measure-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0,0,0,.10);
    }


.measure-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .35rem;
}

.measure-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin: 0 0 .5rem 0;
    font-weight: 800;
}

    .measure-title a {
        display: inline-block;
        position: relative;
        color: #004D40;
        text-decoration: none;
        transition: color .3s ease;
    }

        .measure-title a::after {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            background-color: #00796B;
            transition: width .3s ease;
            margin: 0 auto;
        }

        .measure-title a:hover {
            color: #00796B;
        }

            .measure-title a:hover::after {
                width: 100%;
            }

.measure-foot {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.doc-chip {
    background: #E0F2F1;
    color: #00695C;
    padding: .25rem .5rem;
    border-radius: 6px;
    font-weight: 700;
}

.sep-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #80CBC4;
}

.measure-open {
    position: relative;
    text-decoration: none;
    background: transparent;
    color: #1565C0;
    font-weight: 700;
    transition: color .3s ease;
}

    .measure-open::after {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background-color: #00796B;
        transition: width .3s ease;
        margin: 0 auto;
    }

    .measure-open:hover {
        color: #00796B;
    }

        .measure-open:hover::after {
            width: 100%;
        }


@media (max-width: 576px) {
    .banner-carousel {
        height: 20rem !important;
    }

    .banner-slide {
        height: 20rem !important;
    }
}