/* FEATURED HEADLINE */
.featured-headline { 
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    padding: 24px;       /* ปรับ padding ตามที่ขอ */
    margin-top: 60px;    /* ปรับ margin บน */
    margin-bottom: 60px; /* ปรับ margin ล่าง */
    display: flex; 
    gap: 0; 
    align-items: stretch; 
    border: 1px solid #eee; 
    position: relative; 
    overflow: hidden; 
}

.headline-image { flex: 0 0 450px; width: 450px; height: 450px; background: #f4f4f4; position: relative; }
.headline-image img { width: 100%; height: 100%; object-fit: cover; display: block; box-shadow: none; border-radius: 0; }

.headline-content { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }

.headline-ribbon { position: absolute; top: 25px; right: -40px; background: var(--primary-color); color: #fff; padding: 8px 50px; font-size: 0.85rem; font-weight: bold; text-transform: uppercase; transform: rotate(45deg); box-shadow: 0 2px 5px rgba(0,0,0,0.2); z-index: 10; }

.headline-title { font-size: 2.8rem; margin: 0 0 15px 0; line-height: 1.1; font-weight: 800; }
.headline-title a { color: var(--primary-color); } .headline-title a:hover { color: var(--primary-hover); }

.headline-meta { font-size: 0.95rem; color: #888; margin-bottom: 20px; }
.headline-meta a { font-weight: bold; color: var(--text-color); } .headline-meta a:hover { color: var(--primary-color); }

.headline-excerpt { font-size: 1.15rem; color: #555; line-height: 1.8; margin-bottom: 30px; }

.headline-download-btn { display: inline-block; background: #f0f0f0; color: #555; padding: 10px 25px; border-radius: 30px; font-weight: bold; font-size: 1rem; align-self: flex-start; transition: all 0.2s; border: 1px solid #ddd; }
.headline-download-btn:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); transform: translateY(-2px); }
.headline-download-btn i { margin-right: 8px; }

.headline-readmore { display: none; }

/* Font Type Tag (Bottom Right) */
.featured-headline .font-type {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #fff;
    border: 1px solid #eee;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 5;
    font-size: 0.85rem;
}
.featured-headline .font-type a {
    color: #999;
    font-weight: 500;
}
.featured-headline .font-type a:hover {
    color: var(--primary-color);
}
.featured-headline .font-type i {
    margin-right: 5px;
}

@media (max-width: 991px) {
    .featured-headline { flex-direction: column; gap: 0; padding: 0; }
    .headline-image { flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 1/1; max-width: 100%; }
    .headline-content { padding: 30px 20px; padding-bottom: 60px; /* เผื่อที่ให้ Tag ด้านล่าง */ }
    .headline-title { font-size: 2rem; }
    .headline-ribbon { top: 15px; right: -35px; padding: 5px 40px; font-size: 0.75rem; }
    
    /* ปรับตำแหน่ง Tag ในมือถือ */
    .featured-headline .font-type {
        bottom: 15px;
        right: 15px;
    }
}