/* ==================================================
   RADIO SAMOS - ΕΚΠΟΜΠΕΣ
   3 radio/editorial cards
   ================================================== */

.home-shows-grid {
    width: 100%;
}


/* ==================================================
   GRID
   ================================================== */

.home-shows-grid .view-content.row {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
}

.home-shows-grid .view-content.row > .views-row {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 0 16px;

    flex: none !important;

    border-bottom: 1px solid #e5e5e5;

    box-sizing: border-box;
}


/* ==================================================
   ΕΙΚΟΝΑ
   ================================================== */

/* ==================================================
   ΕΙΚΟΝΑ
   ΧΩΡΙΣ CROP
   ================================================== */

.home-shows-grid .views-field-field-image {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    margin: 0 0 13px;
    padding: 0;

    overflow: hidden;

    border-radius: 10px;

    background: #fff;
}

.home-shows-grid .views-field-field-image .field-content,
.home-shows-grid .views-field-field-image a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: inherit;

    background: #fff;
}

.home-shows-grid .views-field-field-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center !important;

    border: 0 !important;
    border-radius: 0 !important;

    transition: none !important;
}

/* ==================================================
   ΤΙΤΛΟΣ
   ================================================== */

.home-shows-grid .views-field-title {
    margin: 0 0 7px;
}

.home-shows-grid .views-field-title a {
    display: block;

    color: #171717;

    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;

    text-decoration: none;
}

.home-shows-grid .views-field-title a:hover {
    text-decoration: underline;
}


/* ==================================================
   ΗΜΕΡΟΜΗΝΙΑ
   ================================================== */

.home-shows-grid .views-field-created {
    margin: 0;

    color: #999;

    font-size: 0.76rem;
    line-height: 1.2;
}

.home-shows-grid .views-field-created a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 980px) and (min-width: 768px) {

    .home-shows-grid .view-content.row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}


/* ==================================================
   MOBILE
   compact radio cards
   ================================================== */

@media (max-width: 767px) {

    .home-shows-grid .view-content.row {
        display: block !important;
    }

    .home-shows-grid .view-content.row > .views-row {
        display: grid;

        grid-template-columns: 96px minmax(0, 1fr);
        grid-template-areas:
            "image title"
            "image date";

        column-gap: 12px;
        row-gap: 5px;

        align-items: start;

        padding: 13px 0;

        border-bottom: 1px solid #e5e5e5;
    }

    /* εικόνα */
    .home-shows-grid .views-field-field-image {
        grid-area: image;

        width: 96px;
        height: 72px;

        aspect-ratio: auto;

        margin: 0;

        border-radius: 8px;
    }

    /* Δεν θέλουμε hover zoom στο κινητό */
    .home-shows-grid .views-row:hover
    .views-field-field-image img {
        transform: none;
    }

    /* τίτλος */
    .home-shows-grid .views-field-title {
        grid-area: title;

        min-width: 0;

        margin: 0;
    }

    .home-shows-grid .views-field-title a {
        font-size: 0.96rem;
        line-height: 1.25;
    }

    /* ημερομηνία */
    .home-shows-grid .views-field-created {
        grid-area: date;

        font-size: 0.72rem;
    }
}