/* Homepage news grid */
.jmc-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    width: 100%;
}

/* Card */
.jmc-news-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jmc-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.jmc-news-card__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.jmc-news-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.jmc-news-card:hover .jmc-news-card__image img {
    transform: scale(1.04);
}

/* Content */
.jmc-news-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 22px 20px;
}

/* Hide category */
.jmc-news-card__category {
    display: none;
}

/* Date badge */
.jmc-news-card__date {
    position: absolute;
    top: -32px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: auto;
    min-height: 32px;
    margin: 0;
    padding: 7px 12px;
    background: #d31313;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 2px;
}

.jmc-news-card__date::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 7px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 1-1Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9ZM6 6a1 1 0 0 0-1 1v1h14V7a1 1 0 0 0-1-1H6Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 1-1Zm12 8H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9ZM6 6a1 1 0 0 0-1 1v1h14V7a1 1 0 0 0-1-1H6Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

/* Title */
.jmc-news-card__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.jmc-news-card__title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.jmc-news-card__title a:hover {
    color: #d31313;
}

/* Excerpt */
.jmc-news-card__excerpt {
    margin: 0 0 22px;
    color: #666666;
    font-size: 14px;
    line-height: 1.65;
}

/* Read More */
.jmc-news-card__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-top: auto;
    color: #d31313;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.jmc-news-card__link::after {
    content: "➜";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #d31313;
    border-radius: 50%;
    font-size: 11px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.jmc-news-card__link:hover {
    color: #b50e0e;
}

.jmc-news-card__link:hover::after {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 1024px) {
    .jmc-news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .jmc-news-grid {
        grid-template-columns: 100%;
        gap: 22px;
    }

    .jmc-news-card__content {
        padding: 24px 18px 18px;
    }

    .jmc-news-card__date {
        left: 18px;
    }

    .jmc-news-card__title {
        font-size: 17px;
    }
}