/* GLOBAL */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:##F3F4F6;
    color:#000000;
    line-height:1.6;
}


/* HEADER */

.header{
    text-align:center;
    padding:70px 20px 20px;
    background:#ffffff;
}

.header h1{
    font-size:32px;
    font-weight:700;
    max-width:650px;
    margin:auto;
}

.header img{
    margin-top:25px;
}


/* CONTAINER */

.container{
    max-width:900px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:40px;
    padding:40px 20px;
}


/* ARTICLE */

.article{
    display:flex;
    align-items:center;
    gap:30px;
}


/* IMAGE */

.article img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:16px;
    flex-shrink:0;
}


/* TEXT */

.article-text h2{
    font-size:18px;
    font-weight:600;
    line-height:1.4;
    margin-bottom:10px;
}


.article-text time{
    font-size:14px;
    color:#6B7280;
    font-weight:700;
}


/* TABLET */

@media (max-width:1024px){

    .container{
        max-width:700px;
    }

    /* .article img{
        width:160px;
        height:160px;
    } */

}


/* MOBILE */

@media (max-width:600px){

    .header h1{
        font-size:24px;
    }

    .article{

        flex-direction:column;

        align-items:flex-start;

    }
/* 
    .article img{

        width:100%;

        height:auto;

    } */

    .article-text h2{

        font-size:16px;

    }

}
