/* Sport Section - Modern Grid Design */
.sport-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 26px;
}

.sp-hero {
    border-radius: 9px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.sp-hero img {
    width: 100%;
    height: 310px !important;
    object-fit: cover !important;
    transition: transform .4s;
    display: block;
}

.sp-hero:hover img {
    transform: scale(1.04);
}

.sp-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,10,30,.95) 0%, transparent 65%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sp-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
}

.sp-title a {
    color: #fff;
    text-decoration: none;
}

.sp-meta {
    font-size: 11.5px;
    color: rgba(255,255,255,.6);
    display: flex;
    gap: 10px;
}

.sp-sm {
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    transition: transform .2s;
    display: flex;
    flex-direction: column;
}

.sp-sm:hover {
    transform: translateY(-3px);
}

.sp-sm img {
    width: 100%;
    height: 148px !important;
    object-fit: cover !important;
    display: block;
}

.sp-sm-body {
    padding: 11px 13px 13px;
    flex: 1;
}

.sp-sm-title {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.6;
    color: #111;
    margin-bottom: 7px;
}

.sp-sm-title a {
    color: inherit;
    text-decoration: none;
}

.sp-sm:hover .sp-sm-title {
    color: #1e73be;
}

.sp-sm-meta {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

/* Mobile Responsiveness */
@media(max-width: 900px) {
    .sport-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sp-hero {
        grid-column: 1 / -1;
    }
    .sp-hero img {
        height: 220px !important;
    }
}

@media(max-width: 640px) {
    .sport-grid {
        grid-template-columns: 1fr;
    }
}
