body {
    font-family: 'Prompt', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg,
            #32487e 0%,
            /* น้ำเงินเข้ม (ซ้ายสุด) */
            #5a6a9a 25%,
            /* น้ำเงินอ่อนลง */
            #e5e5f5 50%,
            /* ขาวอมเทา (ตรงกลางพอดี) */
            #e8c97e 75%,
            /* ทองอ่อน */
            #e2bd59 100%
            /* ทองสว่าง (ขวาสุด) */
        ) !important;
    color: #222;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.article-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    transition: all 0.3s ease;
    line-height: 1.8;
}

.left-align {
    flex-direction: row;
}

.right-align {
    flex-direction: row-reverse;
}

.article-content {
    max-width: 600px;
    padding: 30px;
    background: #fef9f0;
    /* ครีมอ่อนๆ แทนขาวล้วน */
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 16px;
    position: relative;
}

.article-title::after {
    content: "";
    display: block;
    margin-top: 12px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ffce3d, #e2bd59);
    /* แถบทอง */
    border-radius: 2px;
}

.article-text {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    white-space: normal;
    /* เปลี่ยนจาก pre-wrap เป็น normal */
    letter-spacing: 0.2px;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .article-block {
        flex-direction: column;
        gap: 40px;
    }

    .article-content {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 40px 16px;
        gap: 60px;
    }

    .article-title {
        font-size: 26px;
    }

    .article-text {
        font-size: 16px;
    }
}



