/* --- Boksa specifiskie foni --- */
.bokss-hero-bg {
    /* Šeit vari nomainīt uz specifisku boksa bildi, ja kikboksa bilde neder */
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4)), url('/images/main/Bokss-bnw.jpg');
    background-size: cover;
    background-position: center; 
}

/* --- Specifiskas stila detaļas --- */
.boxing-glove-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--red);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    transform: rotate(-15px);
}

.small-note {
    font-size: 13px;
    color: #555;
    font-style: italic;
    margin-top: 20px;
}

/* Cits gradients CTA blokam boksā */
.boxing-gradient {
    background: linear-gradient(135deg, #141414 0%, #000 100%) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}

.boxing-gradient h2 span {
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
}

/* --- Layout pielāgojumi --- */
.details-grid {
    /* Boksam samainām vietām attēlu un tekstu vizuālai dažādībai */
    grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 968px) {
    .details-grid {
        display: flex;
        flex-direction: column-reverse; /* Mobili attēls būs zem teksta */
    }
}