.bp-volleyball {
    display: grid;
    gap: 18px;
    padding: 28px 0;
}

.bp-volleyball a {
    text-decoration: none;
}

.bp-volleyball-hero,
.bp-volleyball-match-hero,
.bp-volleyball-entity-hero {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: linear-gradient(135deg, #111c2c, #0b111b);
}

.bp-volleyball-eyebrow {
    color: #8ab4ff;
    font-size: 1rem;
    font-weight:800;
}

.bp-volleyball-catalog-section h2{
    font-size:1.25rem;
    margin:0 0 18px;
}

.bp-volleyball-hero h1,
.bp-volleyball-entity-hero h1 {
    margin: 10px 0;
    font-size: 2rem;
}

.bp-volleyball-hero p{font-size:1rem;}

.bp-volleyball-hero p,
.bp-volleyball-entity-hero p {
    margin: 0;
    color: #9aa8bb;
}

/* 날짜 이동 */
.bp-volleyball-date-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bp-volleyball-date-nav form {
    display: flex;
    gap: 8px;
}

.bp-volleyball-date-nav a,
.bp-volleyball-date-nav button,
.bp-volleyball-league-tabs a {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #101824;
    color: #dbe6f5;
}

/* 리그 탭 */
.bp-volleyball-league-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bp-volleyball-league-tabs a.active {
    background: #315efb;
    color: #fff;
}

/* 경기 목록 */
.bp-volleyball-game-list {
    display: grid;
    gap: 10px;
}

.bp-volleyball-league-title {
    margin: 18px 0 4px;
    font-size: 18px;
}

.bp-volleyball-game-card {
    display: grid;
    grid-template-columns: 70px 1fr 1fr 90px;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #0e1622;
    color: #ecf3ff;
}

.bp-volleyball-team {
    display: grid;
    grid-template-columns: 32px 1fr 30px;
    align-items: center;
    gap: 9px;
}

.bp-volleyball-team img,
.bp-volleyball-team-grid img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.bp-volleyball-game-card em,
.bp-volleyball-simple-game em {
    color: #8fa0b5;
    font-style: normal;
    text-align: right;
}

.bp-volleyball-empty {
    padding: 32px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    text-align: center;
}

/* 경기 상세 상단 */
.bp-volleyball-match-hero {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* 스코어보드 */
.bp-volleyball-scoreboard {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    padding: 30px;
    border-radius: 18px;
    background: #0e1622;
}

.bp-volleyball-score-team {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #fff;
    font-size:1.25rem;
}

.bp-volleyball-score-team img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.bp-volleyball-score-team b {
    font-size: 2rem;
}

.bp-volleyball-versus {
    color: #74849a;
    text-align: center;
    font-size:1.5rem;
}

/* 경기 상세 정보 */
.bp-volleyball-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bp-volleyball-detail-grid div {
    padding: 18px;
    border-radius: 12px;
    background: #0e1622;
}

.bp-volleyball-detail-grid span {
    display: block;
    color: #8fa0b5;
    font-size: 13px;
}

/* 팀 및 리그 상단 정보 */
.bp-volleyball-entity-hero {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bp-volleyball-entity-hero img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* 팀 목록 */
.bp-volleyball-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}

.bp-volleyball-team-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    background: #0e1622;
    color: #fff;
}

/* 간단한 경기 목록 */
.bp-volleyball-simple-game {
    display: grid;
    grid-template-columns: 130px 1fr 20px 1fr 90px;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    background: #0e1622;
    color: #fff;
}


.bp-volleyball-catalog-section,
.bp-volleyball-panel {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 22px;
    background: rgba(20, 25, 36, .92);
}

.bp-volleyball-league-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bp-volleyball-league-grid > a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 15px;
    border: 1px solid rgba(148, 163, 184, .15);
    border-radius: 16px;
    background: rgba(15, 23, 42, .58);
    color: inherit;
    text-decoration: none;
    font-size:1rem;
}

.bp-volleyball-league-grid small,
.bp-volleyball-league-grid em {
    display: block;
    margin-top: 5px;
    color: #93b4df;
    font-size: 1rem;
    font-style: normal;
}

.bp-volleyball-league-logo {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, .06);
}

.bp-volleyball-league-logo img,
.bp-volleyball-standings img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.bp-volleyball-season-form {
    margin-left: auto;
}

.bp-volleyball-season-form select {
    min-width: 130px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 10px;
    background: #111827;
    color: #fff;
    font-size:1rem;
}

.bp-volleyball-panel h2{
    font-size:1.25rem;
}

.bp-volleyball-table-wrap {
    overflow-x: auto;
}

.bp-volleyball-standings {
    width: 100%;
    min-width: 790px;
    border-collapse: collapse;
}

.bp-volleyball-standings th,
.bp-volleyball-standings td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    text-align: center;
}

.bp-volleyball-standings th:nth-child(2),
.bp-volleyball-standings td:nth-child(2) {
    text-align: left;
}

.bp-volleyball-standings td a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: inherit;
    text-decoration: none;
}

.bp-volleyball-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.bp-volleyball-metric-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.bp-volleyball-metric-grid > div {
    padding: 16px 12px;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 15px;
    background: rgba(20, 25, 36, .92);
    text-align: center;
}

.bp-volleyball-metric-grid span,
.bp-volleyball-metric-grid strong {
    display: block;
}

.bp-volleyball-metric-grid span {
    color: #93b4df;
    font-size: 1rem;
}

.bp-volleyball-metric-grid strong {
    margin-top: 7px;
    font-size: 1.25rem;
}

.bp-volleyball-team-standing {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    color: inherit;
    text-decoration: none;
    font-size:1.15rem;
}

.bp-volleyball-team-game-card {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 78px;
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 14px;
    background: rgba(15, 23, 42, .48);
    color: inherit;
    text-decoration: none;
}

.bp-volleyball-team-game-meta time,
.bp-volleyball-team-game-meta span {
    display: block;
}

.bp-volleyball-team-game-meta span,
.bp-volleyball-team-game-card > em {
    margin-top: 4px;
    color: #8fb0d8;
    font-size: 12px;
    font-style: normal;
}

.bp-volleyball-team-game-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.bp-volleyball-team-game-matchup span:first-child {
    text-align: right;
}

.bp-volleyball-team-game-matchup span:last-child {
    text-align: left;
}

.bp-volleyball-team-game-matchup b,
.bp-volleyball-team-game-matchup strong {
    display: inline-block;
    margin: 0 4px;
}

.bp-volleyball-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.bp-volleyball-section-heading p,
.bp-volleyball-analysis-note {
    margin: 6px 0 0;
    color: #8fa9ca;
    font-size: 13px;
}

.bp-volleyball-section-heading > strong {
    color: #39b9ff;
    font-size: 22px;
}

.bp-volleyball-probability-row span{
    font-size:1.15rem;
}

.bp-volleyball-probability-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 14px;
    margin-top: 20px;
}

.bp-volleyball-probability-row b {
    color: #39b9ff;
    font-size: 1.25rem;
}

.bp-volleyball-probability-row > div {
    grid-column: 1 / -1;
    height: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(75, 89, 116, .38);
}

.bp-volleyball-probability-row i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2ea8f0, #58c6ff);
}

.bp-volleyball-odds-grid,
.bp-volleyball-comparison,
.bp-volleyball-pick-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bp-volleyball-odds-grid > div,
.bp-volleyball-comparison > div,
.bp-volleyball-pick-points > div {
    padding: 16px;
    border: 1px solid rgba(56, 189, 248, .18);
    border-radius: 15px;
    background: rgba(15, 23, 42, .52);
}

.bp-volleyball-odds-grid > div > span {
    color: #8fb0d8;
    font-size: 12px;
}

.bp-volleyball-odds-grid p {
    display: flex;
    justify-content: space-between;
    margin: 12px 0 0;
}

.bp-volleyball-odds-grid em {
    font-style: normal;
}

.bp-volleyball-odds-grid strong {
    color: #39b9ff;
}

.bp-volleyball-pick-points strong {
    color: #39b9ff;
    font-size:1rem;
}

.bp-volleyball-pick-points p {
    margin: 7px 0 0;
    color: #b5c7df;
    line-height: 1.55;
    font-size:1.15rem;
}

.bp-volleyball-comparison h3 {
    margin-top: 0;
}

.bp-volleyball-comparison dl {
    margin: 0;
}

.bp-volleyball-comparison dl > div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.bp-volleyball-comparison dt {
    color: #8fb0d8;
    font-size:1rem;
}

.bp-volleyball-comparison dd {
    margin: 0;
    font-weight: 700;
    font-size:1.25rem;
}

.bp-volleyball-h2h-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.bp-volleyball-h2h-summary > div {
    padding: 15px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .52);
    text-align: center;
}

.bp-volleyball-h2h-summary span,
.bp-volleyball-h2h-summary strong {
    display: block;
}

.bp-volleyball-h2h-summary span {
    color: #8fb0d8;
    font-size: 1rem;
}

.bp-volleyball-h2h-summary strong {
    margin-top: 7px;
    font-size: 1.25rem;
}

.bp-volleyball-analysis-games {
    margin-top: 14px;
}

.bp-volleyball-analysis-games > a {
    display: grid;
    grid-template-columns: 90px 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 8px;
    border-bottom: 1px solid rgba(148, 163, 184, .12);
    color: inherit;
    text-decoration: none;
}

.bp-volleyball-analysis-games strong {
    color: #39b9ff;
}

/* Volleyball phase 5.1: compact game cards and match analysis layout */
.bp-volleyball-two-column {
    align-items: start;
}

.bp-volleyball-game-list {
    align-self: start;
}

.bp-volleyball-game-list .bp-volleyball-team-game-card {
    min-height: 0;
    height: auto;
    padding: 16px 14px;
    align-items: center;
}

.bp-volleyball-team-game-card {
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: 14px;
}

.bp-volleyball-team-game-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 14px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.bp-volleyball-team-game-matchup span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.bp-volleyball-team-game-matchup strong {
    color: #29b6f6;
    font-size: 18px;
    line-height: 1;
}

.bp-volleyball-team-game-matchup b {
    line-height: 1.25;
}

.bp-volleyball-analysis-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.bp-volleyball-analysis-info-grid > .bp-volleyball-panel {
    height: 100%;
}

.bp-volleyball-analysis-copy {
    margin: 0;
    color: #e5edf8;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.85;
    word-break: keep-all;
}

.bp-volleyball-info-list {
    display: grid;
    gap: 10px;
}

.bp-volleyball-info-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 12px;
    background: rgba(15, 23, 42, .52);
}

.bp-volleyball-info-list span {
    color: #93b4df;
    font-size: 1rem;
}

.bp-volleyball-info-list strong {
    text-align: right;
    font-size:1rem;
}

/* Volleyball game list readability */
.bp-volleyball-game-list {
    align-self: start;
}

.bp-volleyball-game-row {
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr) 52px;
    gap: 10px;
    align-items: center;
    min-height: 72px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 13px;
    background: rgba(15, 23, 42, .48);
    color: inherit;
    text-decoration: none;
}

.bp-volleyball-game-row-meta time,
.bp-volleyball-game-row-meta small {
    display: block;
}

.bp-volleyball-game-row-meta time {
    font-weight: 700;
    line-height: 1.25;
    font-size:1rem;
}

.bp-volleyball-game-row-meta small {
    margin-top: 4px;
    color: #61b9ff;
    font-size: 11px;
}

.bp-volleyball-game-row-teams {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
    gap: 5px;
    align-items: center;
    min-width: 0;
}

.bp-volleyball-game-row-teams span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 7px;
    align-items: center;
    min-width: 0;
}

.bp-volleyball-game-row-teams span:first-child {
    text-align: right;
}

.bp-volleyball-game-row-teams span:last-child {
    grid-template-columns: 28px minmax(0, 1fr);
    text-align: left;
}

.bp-volleyball-game-row-teams b {
    min-width: 0;
    line-height: 1.2;
    font-size:1rem;
}

.bp-volleyball-game-row-teams strong {
    color: #39b9ff;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.bp-volleyball-game-row-teams i {
    color: #93a7c0;
    font-style: normal;
    text-align: center;
    font-size:1rem;
}

.bp-volleyball-game-row > em {
    color: #8fb0d8;
    font-size: 1rem;
    font-style: normal;
    text-align: right;
    white-space: nowrap;
}

.bp-standing-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.bp-standing-rank{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:3px 10px;
    border:1px solid #3bbcff;
    border-radius:999px;
    color:#3bbcff;
    background:rgba(59,188,255,.08);
    font-size:1.15rem;
    font-weight:700;
}

.bp-standing-record{
    color:#fff;
    font-weight:700;
    font-size:1.15rem;
}

.bp-standing-rate{
    color:#3bbcff;
    font-weight:700;
    font-size:1.15rem;
}

.bp-volleyball-standing-group + .bp-volleyball-standing-group {
    margin-top: 30px;
}

.bp-volleyball-standing-group > h3 {
    margin: 0 0 14px;
    padding: 11px 14px;
    border-left: 3px solid #38bdf8;
    border-radius: 0 10px 10px 0;
    background: rgba(56, 189, 248, 0.08);
    color: #eaf6ff;
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 800;
}

.bp-volleyball-section-heading {
    margin-bottom: 18px;
}

.bp-volleyball-score-team small{font-size:.85rem;}

.bp-volleyball-section-heading h2 {
    margin: 0 0 6px;
}

.bp-volleyball-section-heading p {
    margin: 0;
    color: var(--bp-muted, #8ca1bd);
    font-size: 1rem;
}

.bp-volleyball-odds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bp-volleyball-odds-group {
    padding: 14px;
    border: 1px solid #18395b;
    border-radius: 12px;
    background: #101a2b;
}

.bp-volleyball-odds-label {
    display: block;
    margin-bottom: 10px;
    color: #8ca9ca;
    font-size: 1rem;
    font-weight: 700;
}

.bp-volleyball-odds-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.bp-volleyball-odd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid #1c4268;
    border-radius: 8px;
    background: #0d1726;
}

.bp-volleyball-odd-item span {
    color: #9db0c8;
    font-size: 1rem;
}

.bp-volleyball-odd-item strong {
    color: #31b7ff;
    font-size: 1rem;
    font-weight: 800;
}

/* Shared basketball/volleyball player UI */
.bp-sport-player-page {
    display: grid;
    gap: 22px;
}

.bp-sport-player-hero {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 22px;
    background: linear-gradient(135deg, #111c2c, #0b111b);
}

.bp-sport-player-hero img {
    width: 112px;
    height: 112px;
    flex: 0 0 112px;
    border-radius: 18px;
    object-fit: contain;
    background: rgba(255, 255, 255, .06);
}

.bp-sport-player-hero span {
    color: #39b9ff;
    font-size: 13px;
    font-weight: 800;
}

.bp-sport-player-hero h1 {
    margin: 7px 0 5px;
    color: #fff;
    font-size: 32px;
}

.bp-sport-player-hero p {
    margin: 0;
    color: #a8b9cf;
}

.bp-sport-player-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.bp-sport-player-metrics > div {
    padding: 18px 12px;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 15px;
    background: rgba(20, 25, 36, .92);
    text-align: center;
}

.bp-sport-player-metrics strong,
.bp-sport-player-metrics span {
    display: block;
}

.bp-sport-player-metrics strong {
    color: #fff;
    font-size: 22px;
}

.bp-sport-player-metrics span {
    margin-top: 6px;
    color: #93b4df;
    font-size: 12px;
}

.bp-sport-player-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.bp-sport-player-list {
    margin: 0;
}

.bp-sport-player-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 46px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, .13);
}

.bp-sport-player-list dt {
    color: #8fb0d8;
}

.bp-sport-player-list dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
    text-align: right;
}

.bp-sport-roster {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.bp-sport-roster-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(56, 189, 248, .16);
    border-radius: 13px;
    background: rgba(15, 23, 42, .52);
    color: inherit;
    text-decoration: none;
}

.bp-sport-roster-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, .06);
}

.bp-sport-roster-card b,
.bp-sport-roster-card small {
    display: block;
}

.bp-sport-roster-card small,
.bp-sport-roster-card em {
    margin-top: 4px;
    color: #8fb0d8;
    font-size: 12px;
    font-style: normal;
}

.bp-sport-roster-card em {
    color: #39b9ff;
    white-space: nowrap;
}

/* Volleyball standings: keep every group table on the same column grid */
.bp-volleyball-standings {
    table-layout: fixed;
}

.bp-volleyball-standings .bp-vb-col-rank {
    width: 72px;
}

.bp-volleyball-standings .bp-vb-col-team {
    width: auto;
}

.bp-volleyball-standings .bp-vb-col-stat {
    width: 82px;
}

.bp-volleyball-standings .bp-vb-col-rate {
    width: 96px;
}

.bp-volleyball-standings th,
.bp-volleyball-standings td {
    box-sizing: border-box;
    vertical-align: middle;
    white-space: nowrap;
    font-size:1rem;
}

.bp-volleyball-standings th:first-child,
.bp-volleyball-standings td:first-child {
    text-align: center;
}

.bp-volleyball-standings td:nth-child(2) a {
    display: flex;
    width: 100%;
    min-width: 0;
}

.bp-volleyball-standings td:nth-child(2) a img {
    flex: 0 0 34px;
}

.bp-volleyball-standings td:nth-child(2) a {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Volleyball shared SEO summary */

.bp-volleyball-seo-summary {
    margin: 18px 0 20px;
    padding: 24px 26px;
    border: 1px solid rgba(111, 142, 184, 0.18);
    border-radius: 16px;
    background: rgba(14, 24, 39, 0.88);
}

.bp-volleyball-seo-summary h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.bp-volleyball-seo-summary p {
    margin: 0;
    color: #aebed2;
    font-size: 1rem;
    word-break: keep-all;
}

.bp-volleyball-seo-summary p + p {
    margin-top: 9px;
}

@media (max-width: 768px) {
    .bp-volleyball-seo-summary {
        margin: 14px 0 16px;
        padding: 19px 17px;
        border-radius: 14px;
    }

    .bp-volleyball-seo-summary h2 {
        font-size: 1rem;
    }

    .bp-volleyball-seo-summary p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

