

/* ================= BANNER ================= */
.page-start-space{
    padding-top: 132px;
}
.banner {
    width: 100%;
    height: 320px;
    /*margin-top: 113px;*/

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

/* dark overlay for text readability */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.35)
    );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.banner-content p {
    font-size: 18px;
    opacity: 0.9;
}




/* ================= CONTENT ================= */

.content-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff8c00;
    margin: 0 auto 15px;
}

.section-title h2 {
    font-size: 34px;
}

.section-title p {
    color: #666;
}

/* ================= BLOG GRID ================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 12px;
}

/* CLEAN TEXT */
.blog-excerpt p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 26px;
    background: #ff8c00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.read-more-btn:hover {
    background: #ff6b00;
}

/* ================= MOBILE FIX ================= */
/* Mobile fix */

@media (max-width: 768px) {
    
        .banner {
        height: 240px;
        /*margin-top: 90px;*/
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 15px;
    }

/*.banner {*/
/*    height: auto;*/
/*    min-height: 203px;*/
/*    margin-top: 144px;*/
/*}*/


/*    .banner-content h1 {*/
/*        font-size: 28px;*/
/*    }*/

/*    .content-section {*/
/*        padding: 40px 15px;*/
/*    }*/
}
