/* Here comes your own styling */
/* Basında Biz / Medya archive */
.media-archive {
    padding: 70px 0 90px;
}

.media-list-column {
    display: flex;
    margin-bottom: 30px;
}

.media-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    width: 100%;
}

.media-card:hover {
    box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
    transform: translateY(-4px);
}

.media-card-image {
    align-items: center;
    background: #f5f5f5;
    display: flex;
    height: 250px;
    justify-content: center;
    overflow: hidden;
}

.media-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.media-card-image img[src*="logo"] {
    height: auto;
    max-height: 120px;
    object-fit: contain;
    padding: 25px;
    width: 75%;
}

.media-card:hover .media-card-image img:not([src*="logo"]) {
    transform: scale(1.035);
}

.media-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.media-card-body time {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 9px;
}

.media-card-body h2 {
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 13px;
}

.media-card-body p {
    color: #6f6f6f;
    line-height: 1.7;
    margin-bottom: 22px;
}

.media-card-link {
    align-self: flex-start;
    margin-top: auto;
}

.media-card-link i {
    margin-left: 7px;
}

.media-empty-state {
    background: #f7f7f7;
    padding: 35px;
    text-align: center;
}

.media-empty-state p {
    margin: 0;
}

.media-pagination {
    margin-top: 25px;
}

@media (max-width: 767px) {
    .media-archive {
        padding: 45px 0 60px;
    }

    .media-card-image {
        height: 220px;
    }
}
