/* Homepage */
.home-wrapper{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px 0;
}

.home-hero{
    background:linear-gradient(135deg,#013220,#0b4d36);
    color:#fff;
    padding:70px 40px;
    border-radius:20px;
    margin-bottom:40px;
}

.home-hero h1{
    color:#fff;
    font-size:42px;
    line-height:1.2;
    margin:0 0 15px;
    padding:0;
}

.home-hero h1::before{display:none;}

.home-hero p{
    max-width:700px;
    margin:0;
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.7;
}

.home-content{
    background:#fff;
    padding:35px;
    border-radius:15px;
    margin-bottom:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.section-divider{
    display:flex;
    align-items:center;
    gap:18px;
    margin:10px 0 30px;
    color:#0b3d2e;
    font-size:22px;
}

.section-divider::before,
.section-divider::after{
    content:"";
    flex:1;
    height:2px;
    background:linear-gradient(to right,transparent,#0b3d2e,transparent);
}

.section-divider span{line-height:1;}

.section-title{
    margin:0 0 25px;
    padding:0;
    color:#013220;
    font-size:30px;
    line-height:1.25;
}

.section-title::before{display:none;}

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

.article-card{
    min-width:0;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    border:1px solid #eee;
    transition:transform .25s ease,box-shadow .25s ease;
}

.article-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.article-card > a{
    display:block;
    height:100%;
    color:#111;
    text-decoration:none;
}

.article-card > a:hover{text-decoration:none;}

.article-thumb{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
    margin:0;
    border-radius:0;
}

.article-thumb-placeholder{
    background:linear-gradient(135deg,#e7f0eb,#d7e7df);
}

.article-body{
    padding:25px;
}

.article-body h2{
    margin:0 0 12px;
    padding:0;
    color:#013220;
    font-size:22px;
    line-height:1.35;
}

.article-body h2::before{display:none;}

.article-body p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.7;
}

.read-more{
    display:inline-block;
    margin-top:15px;
    color:#0b4d36;
    font-weight:bold;
}

.home-pagination{
    text-align:center;
    margin:40px 0 10px;
}

.home-pagination a{
    display:inline-block;
    padding:12px 20px;
    border-radius:8px;
    background:#013220;
    color:#fff;
    text-decoration:none;
}

.home-pagination a:hover{
    background:#0b4d36;
    text-decoration:none;
}

.no-articles{grid-column:1/-1;}

@media(max-width:900px){
    .article-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media(max-width:600px){
    .home-wrapper{padding:25px 15px 0;}
    .home-hero{padding:40px 25px;border-radius:15px;}
    .home-hero h1{font-size:30px;}
    .home-hero p{font-size:16px;}
    .home-content{padding:25px;}
    .article-grid{grid-template-columns:1fr;gap:18px;}
    .section-title{font-size:26px;}
}
