.current_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.current_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

.current_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0,0,0,.1);
}

.current_card_inner {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.current_image {
    border-radius: 14px;
    overflow: hidden;
}

.current_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.current_meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    margin-bottom: .5rem;
}

.current_badge {
    background: var(--color-primary);
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
}

.current_date {
    color: #666;
}

.current_meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    letter-spacing: normal;
    font-size: 1rem;
    margin-bottom: .5rem;
}


.current_date {
    color: #666;
}

.current_title {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: #111;
}

.current_teaser {
    color: #555;
    line-height: 1.6;
    font-size: .95rem;
}

@media (max-width: 1024px) {
    .current_grid {
        grid-template-columns: 1fr;
    }

    .current_card_inner {
        grid-template-columns: 1fr;
    }

     .current_image {
        width: 100%;
        max-height: 180px;
    }

    .current_image img {
        width: 100%;
        height: 180px;
        object-fit:contain;
    }
}
