:root {
    --navy: #1b3156;
    --red: #ad2418;
    --red-dark: #87150f;
    --muted: #666;
    --pale: #f7f9fc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Montserrat, Arial, sans-serif;
    color: var(--navy);
    line-height: 1.75;
    background: #fff;
}

.wrap {
    width: min(1100px, calc(100% - 40px));
    margin: auto;
}

.navbar-brand img.logo {
    height: 60px;
    width: auto;
    display: block;
}

.article-hero {
    background: var(--navy);
    color: #fff;
    padding: 125px 0 75px;
}

.article-hero span {
    display: inline-block;
    padding: 7px 17px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.article-hero h1 {
    color: #fff;
    opacity: 1;
    visibility: visible;
    background: transparent;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.08;
    margin: 15px 0;
}

.article-hero p {
    color: #f1f3f7;
    opacity: 1;
    visibility: visible;
    max-width: 760px;
    font-size: 1.08rem;
}

.article-index {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 35px 0;
}

.article-index a {
    background: var(--navy);
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: background .3s ease, transform .3s ease;
}

.article-index a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

.full-article {
    padding: 75px 0;
    border-top: 1px solid #dce3eb;
    scroll-margin-top: 20px;
}

.full-article:nth-of-type(even) { background: var(--pale); }
.full-article:first-of-type { border-top: 0; }

.tag {
    color: var(--red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.full-article h2 {
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.18;
    max-width: 900px;
    margin: 12px 0 22px;
}

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 740px) 260px;
    gap: 60px;
}

.copy h3 {
    color: var(--navy);
    font-size: 1.45rem;
    margin: 35px 0 8px;
}

.copy p, .copy li { color: var(--muted); }

.summary {
    background: #fff;
    border-top: 4px solid var(--red);
    box-shadow: 0 15px 40px rgba(27, 49, 86, .1);
    padding: 25px;
    align-self: start;
    position: sticky;
    top: 20px;
}

.summary h3 {
    color: var(--navy);
    margin-top: 0;
}

.cta {
    background: var(--navy);
    color: #fff;
    padding: 30px;
    margin-top: 40px;
    border-radius: 4px;
}

.cta h3 { color: #fff; }
.cta p { color: #f1f3f7; }

.cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 13px 25px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(173, 36, 24, .25);
    transition: background .3s ease, transform .3s ease;
}

.cta .btn:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-3px);
}

.footer-style-two .f-item .logo { width: 280px !important; }
.footer-style-two .f-item .logo img { width: 70% !important; height: auto !important; }

@media (max-width: 800px) {
    .article-grid { grid-template-columns: 1fr; }
    .summary { position: static; order: -1; }
    .article-hero { padding: 105px 0 55px; }
    .footer-style-two .col-lg-5 { display: none !important; }
    .footer-style-two .col-lg-7 { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
}
