/* Headline Section Styles */
.main-latest-wrapper {
    width: 100%;
    background-color: #fdfae9;
    /* Cream background matching image */
    padding: 40px 0;
    margin-bottom: 30px;
}

/* Grid Layout */
.headline-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    /* Slightly reduced gap to fit 3 columns nicely */
    row-gap: 25px;
}

/* Individual Item */
.headline-list-item a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    color: #333;
}

.headline-thumb {
    flex: 0 0 110px;
    width: 110px;
    overflow: hidden;
    border-radius: 4px;
    /* Ensure corners stay rounded when image zooms */
}

.headline-small-img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

.headline-list-item:hover .headline-small-img {
    transform: scale(1.15);
    /* More pronounced pan zoom effect */
}

.headline-content {
    flex: 1;
}

.headline-title {
    font-size: 17px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.45;
    font-weight: 600;
    transition: color 0.3s ease;
}

.headline-list-item:hover .headline-title {
    color: #c8102e;
}

/* Responsive */
@media (max-width: 991px) {
    .headline-grid-3col {
        grid-template-columns: 1fr;
    }
}