/* ==========================
   Wannasuk Luxury Minimal
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Noto Sans Thai',sans-serif;
    background:#fafafa;
    color:#333;
    line-height:1.9;
}

/* ==========================
   Header
========================== */

header{
    background:linear-gradient(135deg,#ffffff,#f5f5f5);
    text-align:center;
    padding:5px 20px;
    border-bottom:1px solid #ececec;
}

.header-text{
    font-size:2.7rem;
    font-weight:300;
    color:#222;
    letter-spacing:1px;
}

.subheader-text{
    margin-top: 15px;
    font-size: clamp(1.5rem, 1.2vw, 1.2rem);
    font-weight: 300;
    color: #777;
    line-height: 1.6;
}
/* ==========================
   Main
========================== */

main{
    max-width:1100px;
    margin:auto;
    padding:0px 2px;
}

/* ==========================
   Article
========================== */

article{
    background:#fff;
    border-radius:20px;
    padding:40px;
    margin-bottom:40px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);

    transition:.35s;
}

article:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 45px rgba(0,0,0,.10);

}

.article-header-text{

    font-size:2rem;
    color:#1b1b1b;
    margin-bottom:20px;
    text-align:center;

}

.article-subheader-text{

    text-align:center;
    color:#999;
    margin-bottom:20px;

}

.article-description,
article p{

    font-size:1.05rem;
    color:#555;
    text-indent: 2rem;

}



strong{

    color:#8b6f3d;
    font-weight:700;

}




