.score-lead {
    text-align: center;
    line-height: 2;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    color: #333;
}

.score-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 8rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.score-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.score-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #b0b0b0;
}

.score-item a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: inherit;
}

.score-item-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #c0392b;
    color: #fff;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.score-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.score-item-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.05em;
}

.score-item-meta {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.05em;
}

.score-item-arrow {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: #888;
    transition: transform 0.2s ease, color 0.2s ease;
}

.score-item:hover .score-item-arrow {
    color: #c0392b;
    transform: translateX(4px);
}

@media screen and (max-width: 767px) {
    .score-lead {
        font-size: 0.9rem;
        line-height: 1.8;
        text-align: left;
        padding: 0 0.5rem;
    }

    .score-list {
        margin-bottom: 5rem;
    }

    .score-item a {
        gap: 0.75rem;
        padding: 1rem;
    }

    .score-item-icon {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .score-item-title {
        font-size: 0.95rem;
    }

    .score-item-meta {
        font-size: 0.75rem;
    }
}
