/* =====================================================
   Radio Team for Elementor – Stylesheet
   ===================================================== */

.rt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Card ─────────────────────────────────────────── */
.rt-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

/* ── Photo ────────────────────────────────────────── */
.rt-photo-wrap {
    display: flex;
    justify-content: center;
    padding: 32px 24px 0;
}

.rt-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e63946;
    display: block;
}

.rt-photo--circle  { border-radius: 50%; }
.rt-photo--rounded { border-radius: 16px; }
.rt-photo--square  { border-radius: 0; }

/* ── Body ─────────────────────────────────────────── */
.rt-body {
    padding: 20px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Name ─────────────────────────────────────────── */
.rt-name {
    margin: 12px 0 4px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

/* ── Role ─────────────────────────────────────────── */
.rt-role {
    margin: 0 0 14px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #e63946;
}

/* ── Bio ──────────────────────────────────────────── */
.rt-bio {
    margin: 0 0 20px;
    font-size: .93rem;
    line-height: 1.65;
    color: #555555;
    flex: 1;
}

/* ── Contact links ────────────────────────────────── */
.rt-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.rt-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: #444;
    text-decoration: none;
    transition: color .2s;
}

.rt-contact-link:hover { color: #e63946; }

.rt-contact-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke: currentColor;
}

/* ── Social icons ─────────────────────────────────── */
.rt-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rt-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e63946;
    color: #ffffff;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}

.rt-social a:hover {
    opacity: .85;
    transform: scale(1.1);
}

.rt-social a svg {
    width: 16px;
    height: 16px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .rt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .rt-grid { grid-template-columns: 1fr; }
}
