.umb-news-page{
    background:#000;
    color:#fff;
}

.umb-news-hero{
    padding:90px 20px 60px;
    background:
        linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.88)),
        radial-gradient(circle at top right, rgba(200,164,93,.22), transparent 28%);
    border-bottom:1px solid rgba(200,164,93,.25);
}

.umb-news-hero-inner{
    
    margin:0 auto;
    text-align:center;
}

.umb-badge{
    display:inline-block;
    background:rgba(200,164,93,.12);
    border:1px solid rgba(200,164,93,.45);
    color:#c8a45d;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.umb-news-hero h1{
    margin:0 0 14px;
    font-size:50px;
    line-height:1.1;
    font-weight:700;
    color:#fff;
}

.umb-news-hero p{
    max-width:760px;
    margin:0 auto;
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.78);
}

.umb-news-container{
    /*max-width:1200px;*/
    margin:0 auto;
    padding:60px 20px 90px;
}

.umb-section-head{
    text-align:center;
    margin-bottom:28px;
}

.umb-section-head h2{
    margin:0 0 8px;
    font-size:34px;
    color:#c8a45d;
}

.umb-section-head p{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:15px;
}

.umb-news-section,
.umb-gallery-section{
    margin-bottom:80px;
}

.umb-news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.umb-news-card{
    position:relative;
    display:block;
    text-decoration:none;
    border:1px solid rgba(200,164,93,.28);
    border-radius:22px;
    overflow:hidden;
    min-height:420px;
    box-shadow:0 14px 34px rgba(0,0,0,.22);
    transition:.28s ease;
    color:#fff;
    background:#111;
}

.umb-news-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.3);
    border-color:#c8a45d;
}

.umb-news-thumb{
    position:absolute;
    inset:0;
    background:#111;
}

.umb-news-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.umb-news-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.62) 50%, rgba(0,0,0,.88) 100%);
    z-index:1;
}

.umb-news-card-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:420px;
    padding:24px;
}

.umb-news-source{
    display:inline-block;
    align-self:flex-start;
    margin-bottom:14px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(200,164,93,.16);
    border:1px solid rgba(200,164,93,.4);
    color:#f1d08d;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
}

.umb-news-card h3{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.4;
    font-weight:700;
    color:#fff;
}

.umb-news-desc{
    margin:0 0 16px;
    color:rgba(255,255,255,.86);
    font-size:14px;
    line-height:1.7;
}

.umb-news-link{
    color:#f0c66d;
    font-weight:700;
    font-size:14px;
}

.umb-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.umb-gallery-card{
    background:#fff;
    border:1px solid rgba(200,164,93,.25);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
    transition:.28s ease;
}

.umb-gallery-card:hover{
    transform:translateY(-5px);
    border-color:#c8a45d;
}

.umb-gallery-card img{
    width:100%;
    height:290px;
    object-fit:cover;
    display:block;
}

.umb-gallery-caption{
    padding:14px 16px;
    font-size:14px;
    color:#111;
}

@media (max-width: 1024px){
    .umb-news-grid{grid-template-columns:repeat(2,1fr);}
    .umb-gallery-grid{grid-template-columns:repeat(3,1fr);}
}

@media (max-width: 767px){
    .umb-news-hero{padding:65px 18px 45px;}
    .umb-news-hero h1{font-size:34px;}
    .umb-news-hero p{font-size:16px;}
    .umb-news-grid{grid-template-columns:1fr;}
    .umb-gallery-grid{grid-template-columns:repeat(2,1fr);}
    .umb-gallery-card img{height:220px;}
}

@media (max-width: 480px){
    .umb-gallery-grid{grid-template-columns:1fr;}
}