/* ================================================================
   TRE – Shows
   File: assets/css/tre-shows.css
================================================================ */

.treshows {
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 0 0 48px;
    align-items: start;
}

/* ── Card ── */
.treshows__card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e3e8f5;
    box-shadow: 0 4px 18px rgba(15, 31, 74, .07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
}
.treshows__card:hover {
    box-shadow: 0 12px 36px rgba(15, 31, 74, .14);
    transform: translateY(-3px);
}

/* ── Header ── */
.treshows__header {
    background: linear-gradient(135deg, #0f1f4a 0%, #1a3a7a 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.treshows__header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.treshows__tag {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .55);
    width: fit-content;
}
.treshows__title {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

/* ── Avatar ── */
.treshows__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, .25);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}
.treshows__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.treshows__avatar-initials {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .15);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .5px;
}

/* ── Body ── */
.treshows__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Presenter ── */
.treshows__presenter {
    font-size: 11px;
    font-weight: 700;
    color: #2053a5;
    text-transform: uppercase;
    letter-spacing: .8px;
    background: #edf1fb;
    border-radius: 999px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

/* ── Description ── */
.treshows__desc {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* ── Contact ── */
.treshows__contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #edf1fb;
}
.treshows__contact-item {
    font-size: 12px;
    color: #2053a5;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
.treshows__contact-link {
    color: #2053a5;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: color .18s ease;
}
.treshows__contact-link:hover {
    color: #f0a500;
    text-decoration: underline;
}

/* ── Bottom accent ── */
.treshows__card::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #2053a5, #f0a500);
}

/* ── Responsive ── */
@media (max-width: 780px) {
    .treshows {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .treshows__avatar {
        width: 50px;
        height: 50px;
    }
    .treshows__title {
        font-size: 15px;
    }
}
