/* ===========================
   Home Sections
=========================== */

.wa-section{
    margin:80px 0;
}

.wa-section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.wa-section-header h2{
    font-size:40px;
    font-weight:700;
    color:#0d1b5e;
    position:relative;
    padding-left:18px;
    margin:0;
}

.wa-section-header h2::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    width:5px;
    height:36px;
    background:#ff7300;
    border-radius:20px;
}

.wa-section-header a{
    color:#ff7300;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.wa-section-header a:hover{
    color:#0d1b5e;
}

/* ===========================
   Grid
=========================== */

.wa-post-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ===========================
   Card
=========================== */

.wa-post-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
}

.wa-post-card:hover{
    transform:translateY(-8px);
}

.wa-post-image{
    display:block;
    overflow:hidden;
}

.wa-post-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.5s;
}

.wa-post-card:hover img{
    transform:scale(1.08);
}

.wa-post-content{
    padding:20px;
}

/* ===========================
   Meta
=========================== */

.wa-meta{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.wa-category{
    background:#eef8ef;
    color:#2b8c3c;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:4px;
    letter-spacing:1px;
}

.wa-reading{
    color:#666;
    font-size:13px;
}

/* ===========================
   Title
=========================== */

.wa-title{
    font-size:28px;
    line-height:1.35;
    margin-bottom:15px;
}

.wa-title a{
    color:#0d1b5e;
    text-decoration:none;
}

.wa-title a:hover{
    color:#ff7300;
}

/* ===========================
   Excerpt
=========================== */

.wa-excerpt{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

/* ===========================
   Footer
=========================== */

.wa-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wa-date{
    font-size:22px;
    color:#0d1b5e;
}

.wa-readmore{
    color:#ff7300;
    text-decoration:none;
    font-size:26px;
    font-weight:700;
}

.wa-readmore:hover{
    color:#0d1b5e;
}

/* ===========================
   Tablet
=========================== */

@media(max-width:991px){

.wa-post-grid{
    grid-template-columns:repeat(2,1fr);
}

.wa-section-header h2{
    font-size:34px;
}

.wa-title{
    font-size:24px;
}

}

/* ===========================
   Mobile
=========================== */

@media(max-width:767px){

.wa-post-grid{
    grid-template-columns:1fr;
}

.wa-section{
    margin:60px 0;
}

.wa-section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.wa-section-header h2{
    font-size:28px;
}

.wa-title{
    font-size:22px;
}

.wa-post-image img{
    height:210px;
}

}






/* =====================================
   Archive Page
===================================== */

.wa-archive-container{
    max-width:1320px;
    margin:70px auto;
    padding:0 15px;
}

.wa-archive-header{
    margin-bottom:50px;
    text-align:center;
}

.wa-archive-header h1{
    font-size:52px;
    color:#0d1b5e;
    margin-bottom:15px;
}

.archive-description{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.wa-pagination{
    margin-top:60px;
    text-align:center;
}

.wa-pagination .page-numbers{

    display:inline-block;
    margin:5px;
    padding:12px 18px;

    border-radius:8px;

    text-decoration:none;

    color:#0d1b5e;

    border:1px solid #ddd;

}

.wa-pagination .current{

    background:#ff7300;

    color:#fff;

    border-color:#ff7300;

}

.wa-pagination a:hover{

    background:#0d1b5e;

    color:#fff;

}




/*===============================
Single Page
================================*/

.wa-single{

    padding:70px 15px;

}

.wa-single-container{

    max-width:900px;

    margin:auto;

}

.wa-single-image img{

    width:100%;

    border-radius:20px;

    display:block;

}

.wa-single-meta{

    display:flex;

    gap:15px;

    margin:30px 0;

    color:#777;

    font-size:15px;

    flex-wrap:wrap;

}

.wa-single-title{

    font-size:48px;

    line-height:1.3;

    color:#0d1b5e;

    margin-bottom:35px;

}

.wa-single-content{

    font-size:19px;

    line-height:2;

    color:#444;

}

.wa-single-content h2{

    margin-top:50px;

    margin-bottom:20px;

    color:#0d1b5e;

}

.wa-single-content img{

    max-width:100%;

    height:auto;

    border-radius:12px;

}

.wa-post-navigation{

    display:flex;

    justify-content:space-between;

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid #ddd;

}

.wa-post-navigation a{

    text-decoration:none;

    color:#ff7300;

    font-weight:600;

}

.wa-post-navigation a:hover{

    color:#0d1b5e;

}

@media(max-width:768px){

.wa-single-title{

    font-size:34px;

}

.wa-single-content{

    font-size:17px;

}

.wa-post-navigation{

    flex-direction:column;

    gap:20px;

}

}



/*====================================
Share Buttons
====================================*/

.wa-share{

    margin-top:60px;

    margin-bottom:60px;

}

.wa-share h3{

    margin-bottom:20px;

    color:#0d1b5e;

}

.wa-share a{

    display:inline-block;

    margin:5px;

    padding:12px 20px;

    background:#0d1b5e;

    color:#fff;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;

}

.wa-share a:hover{

    background:#ff7300;

}

/*====================================
Related Posts
====================================*/

.wa-related{

    margin-top:90px;

}

.wa-related h2{

    font-size:38px;

    margin-bottom:35px;

    color:#0d1b5e;

}

/*==========================
SECTION
==========================*/

.wa-section{

    padding:80px 0;

}

.wa-container{

    width:92%;

    max-width:1280px;

    margin:auto;

}

.wa-section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.wa-section-header h2{

    font-size:40px;

    color:#0f1f63;

    font-weight:700;

    position:relative;

    padding-left:18px;

}

.wa-section-header h2::before{

    content:"";

    width:5px;

    height:36px;

    background:#ff7a00;

    position:absolute;

    left:0;

    top:4px;

}

.wa-section-header a{

    text-decoration:none;

    color:#ff7a00;

    font-weight:600;

}

/*==========================
GRID
==========================*/

.wa-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*==========================
CARD
==========================*/

.wa-post-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

}

.wa-post-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.wa-post-thumb img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

}

.wa-post-content{

    padding:22px;

}

.wa-category{

    display:inline-block;

    padding:6px 14px;

    background:#eaf7f4;

    color:#0d7d64;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

}

.wa-reading{

    margin-left:10px;

    color:#666;

    font-size:14px;

}

.wa-post-content h3{

    margin:18px 0;

    font-size:28px;

    line-height:1.35;

}

.wa-post-content h3 a{

    text-decoration:none;

    color:#17244d;

}

.wa-post-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:18px;

}

.wa-read-more{

    text-decoration:none;

    color:#ff7a00;

    font-weight:700;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

    .wa-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    .wa-grid{

        grid-template-columns:1fr;

    }

    .wa-section-header{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

    .wa-section-header h2{

        font-size:30px;

    }

}


/*==============================
NEWSLETTER
==============================*/

.newsletter-section{

    background:#11195f;

    padding:80px 20px;

    margin-top:80px;

}

.newsletter-container{

    max-width:800px;

    margin:auto;

    text-align:center;

}

.newsletter-container h2{

    color:#fff;

    font-size:42px;

    margin-bottom:20px;

}

.newsletter-container p{

    color:#d5dcff;

    line-height:1.8;

    margin-bottom:35px;

}

.newsletter-container form{

    display:flex;

    gap:15px;

    justify-content:center;

    flex-wrap:wrap;

}

.newsletter-container input{

    width:420px;

    max-width:100%;

    padding:18px;

    border:none;

    border-radius:10px;

    font-size:16px;

}

.newsletter-container button{

    background:#ff8200;

    color:#fff;

    border:none;

    padding:18px 35px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.newsletter-container button:hover{

    background:#ff9800;

}

@media(max-width:768px){

.newsletter-container h2{

    font-size:30px;

}

.newsletter-container form{

    flex-direction:column;

}

.newsletter-container input,

.newsletter-container button{

    width:100%;

}

}