.hero::before {
    background-image: url('https://images.unsplash.com/photo-1542051841857-5f90071e7989?auto=format&fit=crop&q=80&w=1200');
    opacity: 0.20;
}

.ranking-section {
    padding: 40px 20px;
    flex: 1;
}

.ranking-list {
    list-style: none;
}

.ranking-item {
    margin-bottom: 15px;
}

.ranking-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    gap: 20px;
}

.ranking-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-main);
}

.ranking-info {
    flex: 1;
}

.ranking-cat {
    font-size: 0.65rem;
    color: #fff;
    background: var(--accent-main);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.ranking-title {
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.4;
}