*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:"Montserrat", Arial, sans-serif;
    color:#132943;
    background:#f2f5f9;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
    max-width:100%;
}

.list-container{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
}

.list-topbar{
    background:#004684;
    color:#fff;
    font-size:12px;
    font-weight:800;
}

.list-topbar-inner{
    min-height:32px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
}

.list-header{
    background:#fff;
    border-bottom:1px solid #dde5ef;
}

.list-header-inner{
    min-height:176px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:42px;
}

.list-logo img{
    width:330px;
    height:auto;
}

.list-nav{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.list-nav a{
    min-width:94px;
    padding:16px 18px;
    border-radius:16px;
    color:#004684;
    font-weight:900;
    line-height:1.1;
    transition:.2s ease;
}

.list-nav a small{
    display:block;
    margin-top:8px;
    color:#647183;
    font-size:11px;
    font-weight:500;
}

.list-nav a:hover,
.list-nav a.active{
    background:#004684;
    color:#fff;
    box-shadow:0 14px 24px rgba(0,70,132,.18);
}

.list-nav a:hover small,
.list-nav a.active small{
    color:#fff;
}

.list-main{
    padding-bottom:70px;
}

.list-hero{
    padding:48px 0 28px;
    background:
        radial-gradient(circle at 12% 10%, rgba(0,70,132,.12), transparent 28%),
        linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
}

.list-hero-inner{
    min-height:210px;
    padding:38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    border-radius:28px;
    color:#fff;
    background:linear-gradient(135deg, #004684 0%, #075fa4 48%, #127a73 100%);
    box-shadow:0 22px 48px rgba(20,42,70,.12);
}

.list-hero span,
.list-section-head span,
.news-card-date{
    color:#cdefff;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.list-section-head span,
.news-card-date{
    color:#0f7b7a;
}

.list-hero h1{
    margin:10px 0 12px;
    font-size:clamp(38px, 5vw, 68px);
    line-height:.98;
    font-weight:900;
    letter-spacing:0;
}

.list-hero p{
    margin:0;
    max-width:620px;
    color:#e8f4ff;
    font-size:16px;
    line-height:1.7;
}

.list-back{
    flex:0 0 auto;
    display:inline-flex;
    min-height:46px;
    align-items:center;
    justify-content:center;
    padding:0 20px;
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.3);
    font-size:13px;
    font-weight:900;
}

.list-section{
    padding-top:54px;
}

.list-section-head{
    margin-bottom:28px;
}

.list-section-head h2{
    position:relative;
    margin:8px 0 0;
    padding-bottom:18px;
    color:#004684;
    font-size:clamp(28px, 3.5vw, 42px);
    line-height:1.05;
    font-weight:900;
    letter-spacing:0;
}

.list-section-head h2:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:78px;
    height:4px;
    border-radius:999px;
    background:#127a73;
}

.news-card-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.news-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 42px rgba(16,39,66,.1);
    transition:transform .2s ease, box-shadow .2s ease;
}

.news-card:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 48px rgba(16,39,66,.16);
}

.news-card-image{
    display:block;
    background:linear-gradient(135deg, #dce8f5, #8ca8c8);
}

.news-card-image.is-missing{
    aspect-ratio:16 / 10;
    display:grid;
    place-items:center;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(135deg, #e8f0f8 0%, #d8e5f2 48%, #c9d9e8 100%);
}

.news-card-image.is-missing:after{
    content:"Lincoln News";
    color:#004684;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:.45;
}

.news-card-image img{
    width:100%;
    aspect-ratio:16 / 10;
    object-fit:cover;
}

.news-card-body{
    padding:22px;
}

.news-card h3{
    margin:10px 0 12px;
    color:#004684;
    font-size:20px;
    line-height:1.22;
    font-weight:900;
    letter-spacing:0;
}

.news-card p{
    min-height:72px;
    margin:0 0 18px;
    color:#536071;
    font-size:14px;
    line-height:1.65;
}

.news-card-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#0f7b7a;
    font-size:13px;
    font-weight:900;
}

.news-card-link:after{
    content:">";
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#004684;
    background:#edf5ff;
}

.list-pager{
    width:max-content;
    max-width:100%;
    margin:34px auto 0;
    padding:12px 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 34px rgba(16,39,66,.08);
}

.list-pager span{
    color:#536071;
    font-size:13px;
    font-weight:800;
}

.list-pager div{
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:wrap;
}

.list-pager a{
    min-width:32px;
    height:32px;
    display:grid;
    place-items:center;
    border-radius:10px;
    color:#004684;
    background:#edf5ff;
    font-size:12px;
    font-weight:900;
}

.list-pager a.nav{
    width:auto;
    padding:0 12px;
}

.list-pager .dots{
    min-width:20px;
    color:#667283;
    text-align:center;
    font-size:13px;
    font-weight:900;
}

.list-pager a.active{
    color:#fff;
    background:#004684;
}

.list-empty{
    padding:34px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 42px rgba(16,39,66,.08);
}

.list-empty h3{
    margin:0 0 8px;
    color:#004684;
    font-size:24px;
    font-weight:900;
}

.list-empty p{
    margin:0;
    color:#536071;
    line-height:1.7;
}

.list-admin{
    margin-top:24px;
    display:flex;
    justify-content:flex-end;
    gap:10px;
    flex-wrap:wrap;
}

.list-admin a{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 16px;
    border-radius:999px;
    color:#fff;
    background:#004684;
    font-size:13px;
    font-weight:900;
}

.list-admin.quiet a{
    color:#004684;
    background:#edf5ff;
}

.list-footer{
    padding:54px 0;
    background:#fff;
    border-top:1px solid #dde5ef;
}

.list-footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:54px;
}

.list-footer img{
    width:210px;
    margin-bottom:20px;
}

.list-footer p,
.list-footer a{
    color:#667283;
    font-size:14px;
    line-height:1.8;
}

.list-footer h3{
    margin:0 0 14px;
    color:#004684;
    font-size:18px;
    font-weight:900;
}

.list-footer a{
    display:block;
    margin:8px 0;
}

@media (max-width: 980px){
    .list-topbar-inner{
        justify-content:center;
        gap:14px;
    }

    .list-header-inner{
        min-height:auto;
        padding:26px 0;
        flex-direction:column;
        align-items:flex-start;
    }

    .list-nav{
        width:100%;
    }

    .list-nav a{
        flex:1 1 150px;
    }

    .news-card-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px){
    .list-container{
        width:min(100% - 28px, 1180px);
    }

    .list-logo img{
        width:260px;
    }

    .list-nav a{
        flex:1 1 100%;
        padding:14px 16px;
    }

    .list-hero{
        padding:30px 0 20px;
    }

    .list-hero-inner{
        min-height:auto;
        padding:26px;
        align-items:flex-start;
        flex-direction:column;
        border-radius:22px;
    }

    .list-section{
        padding-top:40px;
    }

    .news-card-grid{
        grid-template-columns:1fr;
    }

    .list-pager{
        align-items:flex-start;
        flex-direction:column;
    }

    .list-footer-grid{
        grid-template-columns:1fr;
        gap:28px;
    }
}
