/* Sports Match-up Cards Block Styles */
.sports-matchup-cards {
    width: 100%;
    padding: 32px 0;
}

.sports-matchup-cards__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    
}

.sports-matchup-cards__card {
    background: var(--sports-cards-card-bg, #ffffff);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.sports-matchup-cards__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Header with Team Icons and VS */
.sports-matchup-cards__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sports-matchup-cards__team-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.32px;
}

.sports-matchup-cards__team-icon--team-a {
    background-color: var(--sports-cards-team-a-color, #0066CC);
}

.sports-matchup-cards__team-icon--team-b {
    background-color: var(--sports-cards-team-b-color, #CC0000);
}

.sports-matchup-cards__vs {
    font-size: 22px;
    font-weight: 300;
    color: #878686;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

/* Content */
.sports-matchup-cards__content {
    flex: 1;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 0.32px;
}

.sports-matchup-cards__title {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-wrap: balance;
}

.sports-matchup-cards__date-time {
    font-size: 14px;
    font-weight: normal;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.sports-matchup-cards__betting-line {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    line-height: 1.2;
}

/* Separator */
.sports-matchup-cards__separator {
    height: 1px;
    background-color: #E0E0E0;
    margin-bottom: 16px;
}

/* Footer with Button */
.sports-matchup-cards__footer {
    display: flex;
    justify-content: center;
}

.sports-matchup-cards__button {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    display: inline-block;
    width: 100%;
}

.sports-matchup-cards__button:hover {
    background-color: #f8f8f8;
    border-color: #CCCCCC;
    color: #000000;
    text-decoration: none;
    transform: translateY(-1px);
}

.sports-matchup-cards__button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sports-matchup-cards__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .sports-matchup-cards {
        padding: 16px 0;
    }
    
    .sports-matchup-cards__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .sports-matchup-cards__card {
        padding: 16px;
    }
    
    .sports-matchup-cards__header {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .sports-matchup-cards__team-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .sports-matchup-cards__vs {
        font-size: 15px;
    }
    
    .sports-matchup-cards__title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .sports-matchup-cards__date-time {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .sports-matchup-cards__betting-line {
        font-size: 15px;
    }
    
    .sports-matchup-cards__separator {
        margin-bottom: 12px;
    }
    
    .sports-matchup-cards__button {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .sports-matchup-cards {
        padding: 12px 0;
    }
    
    .sports-matchup-cards__container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sports-matchup-cards__card {
        padding: 14px;
    }
    
    .sports-matchup-cards__header {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .sports-matchup-cards__team-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .sports-matchup-cards__vs {
        font-size: 14px;
    }
    
    .sports-matchup-cards__title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .sports-matchup-cards__date-time {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .sports-matchup-cards__betting-line {
        font-size: 14px;
    }
    
    .sports-matchup-cards__separator {
        margin-bottom: 10px;
    }
    
    .sports-matchup-cards__button {
        padding: 7px 14px;
        font-size: 12px;
        min-width: 90px;
    }
}