/* assets/css/article.css */

/* Home Article Section */
.article-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.article-section-subtitle {
    color: #888;
    text-align: center;
    font-weight: 300;
    margin-bottom: 3rem;
}

/* --- Card Styles --- */
.home-article-card {
    display: block;
    background: #fff;
    border: 1px solid #f0f0f0; /* ขอบบางๆ สีเทาจาง */
    text-decoration: none;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect: ยกการ์ดขึ้น + เงา */
.home-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Image Wrapper */
.h-a-img-box {
    position: relative;
    width: 100%;
    padding-top: 60%; /* อัตราส่วนภาพ (ปรับได้ เช่น 56.25% คือ 16:9) */
    overflow: hidden;
    background-color: #f5f5f5;
}

.h-a-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Hover Effect: ซูมรูป */
.home-article-card:hover .h-a-img {
    transform: scale(1.1);
}

/* Content Box */
.h-a-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Date */
.h-a-date {
    font-size: 0.75rem;
    color: #D4AF37; /* สีทอง */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Title */
.h-a-title {
    font-family: 'Playfair Display', serif; /* ถ้ามีฟอนต์นี้ หรือใช้ฟอนต์หลัก */
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    
    /* ตัดคำ 2 บรรทัด */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.home-article-card:hover .h-a-title {
    color: #D4AF37; /* ชื่อเรื่องเปลี่ยนเป็นสีทองตอน Hover */
}

/* Excerpt */
.h-a-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    
    /* ตัดคำ 3 บรรทัด */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Link (Fake Button style) */
.h-a-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    margin-top: auto; /* ดันไปล่างสุด */
}

.h-a-line {
    width: 30px;
    height: 1px;
    background-color: #1a1a1a;
    margin-right: 10px;
    transition: width 0.3s ease;
}

.home-article-card:hover .h-a-line {
    width: 50px; /* ขีดจะยาวขึ้นตอน Hover */
    background-color: #D4AF37;
}

.home-article-card:hover .h-a-read-more {
    color: #D4AF37;
}