.blog__item-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog__img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.blog__meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.blog__title {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
    transition: color 0.3s;
    text-decoration: none;
}

.blog__title:hover {
    color: #203864;
}

.blog__item-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog__item-wrapper:hover .blog__title {
    color: #203864;
}

.blog__item-wrapper:hover .blog__img img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .blog__title {
        font-size: 18px;
    }

    .blog__img {
        height: 180px;
    }

    .blog__content {
        padding: 15px;
    }
}

.blog__btn-rm {
    margin-top: auto;
    font-weight: 500;
    color: #203864;
    text-decoration: none;
    transition: color 0.3s;
}

.blog__btn-rm:hover {
    color: #152c58;
}