﻿/*
  news-cards1 Section
  ---------------
*/
.news-cards1 .text-p {
    font-size: 1rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.news-cards1 .news-item {
    background-color: var(--default-light-color);
    border: 2px solid var(--light-color);
    overflow: hidden;
    border-radius: 0.5rem;
    color: inherit;
    display: flex;
    width: 100%;
    height: 100%;
}

    .news-cards1 .news-item .card-box {
        display: contents;
    }

.news-cards1 .news-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Zoom + Dark Overlay */
.news-cards1 .image-wrapper {
    position: relative;
    overflow: hidden;
}

    .news-cards1 .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

/* Zoom effect */
.news-cards1 .news-item:hover .image-wrapper img {
    transform: scale(1.1);
}

/* Dark overlay */
.news-cards1 .image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0); /* default transparent */
    transition: background 0.4s ease;
}

/* Darken on hover */
.news-cards1 .news-item:hover .image-wrapper::after {
    background: rgba(0,0,0,0.35); /* dark layer */
}

.news-cards1 .image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
}

    .news-cards1 .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

/*.news-cards1 .news-content h3 {
        font-weight: 700;
        font-size: 20px;
    }*/

.news-item:hover .news-content {
    background-color: var(--gray50);
}

.news-cards1 .news-content h3 a {
    color: var(--primary-color);
    transition: 0.3s;
}

    .news-cards1 .news-content h3 a:hover {
        color: var(--primary-color);
    }

.news-cards1 .news-content .category {
    font-size: 14px;
    border-radius: 5px 5px 5px 5px;
    background-color: var(--secondary-color);
    color: var(--default-light-color);
    padding: 6px 14px;
    margin: 0;
}

.news-cards1 .news-content .price {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: color-mix(in srgb, var(--dark-color), transparent 20%);
}

.news-cards1 .news-content .description {
    font-size: 14px;
    color: color-mix(in srgb, var(--dark-color), transparent 20%);
}

.news-cards1 .trainer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid color-mix(in srgb, var(--dark-color), transparent 90%);
}

    .news-cards1 .trainer .trainer-profile img {
        max-width: 50px;
        border-radius: 50px;
    }

    .news-cards1 .trainer .trainer-profile .trainer-link {
        padding-left: 10px;
        font-weight: 600;
        font-size: 16px;
        color: color-mix(in srgb, var(--dark-color), transparent 20%);
        transition: 0.3s;
    }

        .news-cards1 .trainer .trainer-profile .trainer-link:hover {
            color: var(--primary-color);
        }

    .news-cards1 .trainer .trainer-rank {
        font-size: 18px;
        color: color-mix(in srgb, var(--dark-color), transparent 60%);
    }

        .news-cards1 .trainer .trainer-rank .user-icon {
            font-size: 22px;
        }
