/* ==================================================
   RADIO SAMOS - ΑΠΟΨΕΙΣ
   3 text-first editorial cards
   ================================================== */

.home-opinions {
    width: 100%;
}

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

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

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

    margin: 0 !important;
}

.home-opinions .view-content.row > .views-row {
    position: relative;

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

    margin: 0 !important;
    padding: 18px 20px 18px 18px;

    flex: none !important;

    border-left: 4px solid #171717;
    background: #fafafa;

    box-sizing: border-box;
}


/* Τίτλος */

.home-opinions .views-field-title {
    margin: 0 0 12px;
}

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

    color: #171717;

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

    text-decoration: none;
}

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


/* Απόσπασμα */

.home-opinions .views-field-body {
    margin: 0 0 14px;

    color: #555;

    font-size: 0.94rem;
    line-height: 1.5;
}

.home-opinions .views-field-body * {
    color: inherit !important;
    text-decoration: none !important;
}


/* Ημερομηνία */

.home-opinions .views-field-created {
    margin: 0;

    color: #999;

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


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

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

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


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

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

    .home-opinions .view-content.row > .views-row {
        margin: 0 0 12px !important;
        padding: 15px 16px;

        border-left-width: 3px;
    }

    .home-opinions .views-field-title a {
        font-size: 1rem;
        line-height: 1.25;
    }

    .home-opinions .views-field-body {
        font-size: 0.9rem;
    }
}