/* TST — Experiencia Editorial: Frontend styles */

/* ── Tag de jugador en el contenido ── */
a.tst-player-tag {
    color: #305180;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
a.tst-player-tag:hover {
    color: #1E3A5F;
    text-decoration: underline;
}

/* ── Bloque "Tenistas Mencionados" ── */
.tst-players-block {
    margin: 40px 0 32px;
    padding: 0;
    background: #fff;
    border: 1.5px solid #E4E3DC;
    border-radius: 14px;
    font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
}
.tst-players-block__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1.5px solid #E4E3DC;
    background: #FAFAF8;
}
.tst-players-block__header-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #B8CC30;
    flex-shrink: 0;
}
.tst-players-block__title {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: #305180;
    margin: 0;
}
.tst-players-block__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 20px 16px 16px;
    list-style: none;
}
.tst-players-block__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    width: 88px;
    padding: 10px 6px 12px;
    border-radius: 10px;
    transition: background .15s;
}
.tst-players-block__item:hover {
    background: #F0F6FC;
    text-decoration: none !important;
}
.tst-players-block__ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 3px;
    background: #B8CC30;
    flex-shrink: 0;
    transition: background .18s, transform .18s;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.tst-players-block__item:hover .tst-players-block__ring {
    background: #1E3A5F;
    transform: scale(1.05);
}
.tst-players-block__ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tst-players-block__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 50%;
}
.tst-players-block__avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1E3A5F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #E1FA59;
}
.tst-players-block__name {
    font-size: 12px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
    line-height: 1.35;
    word-break: break-word;
    hyphens: auto;
    transition: color .15s;
    text-decoration: none !important;
    max-width: 76px;
}
.tst-players-block__item:hover .tst-players-block__name {
    color: #305180;
}
@media (max-width: 480px) {
    .tst-players-block__list { padding: 16px 8px 12px; }
    .tst-players-block__item { width: 80px; padding: 8px 4px 10px; }
    .tst-players-block__ring { width: 58px; height: 58px; }
}
