.latest-news-section {
    padding: 95px 0;
    background: #ffffff;
}

.latest-news-heading {
    margin-bottom: 42px;
}

.latest-news-eyebrow {
    margin-bottom: 8px;
    color: #b77b25;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.latest-news-title {
    margin-bottom: 12px;
    color: #352411;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
}

.latest-news-intro {
    max-width: 650px;
    margin-bottom: 0;
    color: #766653;
    line-height: 1.75;
}

.latest-news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a96f1d;
    font-weight: 600;
    text-decoration: none;
}

.latest-news-view-all:hover {
    color: #7f5014;
}

.latest-news-card {
    overflow: hidden;
    border: 1px solid #eee4d5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 18px 45px rgba(61, 40, 17, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.latest-news-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 55px rgba(61, 40, 17, 0.13);
}

.latest-news-image-link {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
}

.latest-news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.latest-news-card:hover .latest-news-image {
    transform: scale(1.045);
}

.latest-news-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7efe2;
    color: #bb873b;
    font-size: 2.5rem;
}

.latest-news-featured {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.93);
    color: #a66c1b;
    font-size: 0.78rem;
    font-weight: 700;
}

.latest-news-body {
    padding: 24px;
}

.latest-news-date {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: #9a7d5b;
    font-size: 0.84rem;
}

.latest-news-card-title {
    margin-bottom: 13px;
    font-size: 1.25rem;
    line-height: 1.45;
}

.latest-news-card-title a {
    color: #352411;
    text-decoration: none;
}

.latest-news-card-title a:hover {
    color: #a96f1d;
}

.latest-news-description {
    display: -webkit-box;
    margin-bottom: 20px;
    overflow: hidden;
    color: #756551;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.latest-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a96f1d;
    font-weight: 600;
    text-decoration: none;
}

.latest-news-read-more i {
    transition: transform 0.2s ease;
}

.latest-news-read-more:hover {
    color: #7f5014;
}

.latest-news-read-more:hover i {
    transform: translateX(4px);
}

.latest-news-empty {
    padding: 60px 25px;
    border: 1px dashed #dfceb4;
    border-radius: 24px;
    background: #fffbf5;
    text-align: center;
}

.latest-news-empty i {
    display: block;
    margin-bottom: 15px;
    color: #c08a3b;
    font-size: 2.5rem;
}

.latest-news-empty h3 {
    color: #3d2b17;
    font-size: 1.35rem;
}

.latest-news-empty p {
    margin-bottom: 0;
    color: #796852;
}

@media (max-width: 767.98px) {
    .latest-news-section {
        padding: 65px 0;
    }

    .latest-news-image-link {
        height: 220px;
    }
}