
.selc-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.selc-item {
    display: grid;
    grid-template-columns: 120px 150px 130px minmax(220px, 1fr) 280px;
    min-height: 150px;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid #dedede;
}

.selc-item:first-child {
    border-top: 1px solid #dedede;
}

.selc-date,
.selc-day,
.selc-time,
.selc-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px;
    border-right: 1px solid #e5e5e5;
}

.selc-date {
    align-items: center;
    text-align: center;
}

.selc-number {
    font-size: 72px;
    line-height: .85;
    font-weight: 800;
    letter-spacing: -4px;
}

.selc-month {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.selc-day {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.selc-time {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.selc-title a {
    font-size: 27px;
    line-height: 1.15;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.selc-image {
    min-height: 150px;
    overflow: hidden;
}

.selc-image img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    display: block;
}

.selc-no-image {
    min-height: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selc-empty {
    padding: 28px;
    border: 1px solid #ddd;
    text-align: center;
    background: #fafafa;
}

@media (max-width: 900px) {
    .selc-item {
        grid-template-columns: 100px 120px 110px minmax(150px, 1fr) 200px;
    }

    .selc-date,
    .selc-day,
    .selc-time,
    .selc-title {
        padding: 14px;
    }

    .selc-number {
        font-size: 58px;
    }

    .selc-title a {
        font-size: 22px;
    }
}

@media (max-width: 700px) {
    .selc-list {
        gap: 14px;
    }

    .selc-item {
        grid-template-columns: 90px 1fr 1fr;
        grid-template-areas:
            "date day time"
            "title title title"
            "image image image";
        border: 1px solid #dedede;
        border-radius: 8px;
        overflow: hidden;
    }

    .selc-item:first-child {
        border-top: 1px solid #dedede;
    }

    .selc-date { grid-area: date; border-bottom: 1px solid #e5e5e5; }
    .selc-day  { grid-area: day; border-bottom: 1px solid #e5e5e5; }
    .selc-time { grid-area: time; border-right: 0; border-bottom: 1px solid #e5e5e5; }
    .selc-title { grid-area: title; border-right: 0; }
    .selc-image { grid-area: image; min-height: 220px; }

    .selc-image img,
    .selc-no-image {
        min-height: 220px;
    }

    .selc-number {
        font-size: 48px;
    }
}

@media (max-width: 430px) {
    .selc-item {
        grid-template-columns: 86px 1fr;
        grid-template-areas:
            "date day"
            "date time"
            "title title"
            "image image";
    }

    .selc-day {
        border-right: 0;
        border-bottom: 0;
        padding-bottom: 5px;
    }

    .selc-time {
        padding-top: 5px;
    }
}
