/* ==========================================================================
   MULTIPRESS SPORT
   Enterprise Sports Centre
   ========================================================================== */

.mp-sport{
    --sport-primary:#16a34a;
    --sport-secondary:#0f172a;
    --sport-accent:#22c55e;
    --sport-danger:#ef4444;
    --sport-gold:#facc15;
    --sport-border:#e5e7eb;
    --sport-bg:#f7faf9;
    --sport-card:#ffffff;
    --sport-text:#111827;
    --sport-muted:#6b7280;

    margin:50px 0;
    background:var(--sport-bg);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

/* ==========================================================
   HEADER
========================================================== */

.mp-sport__header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    padding:22px 28px;

    background:linear-gradient(135deg,#15803d,#166534);
    color:#fff;

}

.mp-sport__title{

    margin:0;

    font-family:Poppins,sans-serif;
    font-size:30px;
    font-weight:700;
    letter-spacing:-.5px;

}

.mp-sport__more{

    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#fff;
    text-decoration:none;

    font-weight:600;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.25);

    border-radius:50px;

    transition:.3s;

}

.mp-sport__more:hover{

    background:#fff;
    color:#166534;

}

/* ==========================================================
   DASHBOARD
========================================================== */

.mp-sport-dashboard{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;

    padding:30px;

}

/* ==========================================================
   FEATURED MATCH
========================================================== */

.mp-sport-featured{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 40px rgba(0,0,0,.08);

}

.mp-sport-featured__image{

    position:relative;

    display:block;

    overflow:hidden;

}

.mp-sport-featured__image img{

    width:100%;
    height:430px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.mp-sport-featured:hover
.mp-sport-featured__image img{

    transform:scale(1.08);

}

.mp-sport-featured__badge{

    position:absolute;

    top:20px;
    left:20px;

    background:var(--sport-danger);

    color:#fff;

    font-size:12px;
    font-weight:700;
    text-transform:uppercase;

    padding:8px 14px;

    border-radius:50px;

    letter-spacing:.5px;

}

.mp-sport-featured__content{

    padding:28px;

}

.mp-sport-featured__content h3{

    margin:0 0 18px;

    font-size:34px;
    line-height:1.25;

    font-family:Poppins,sans-serif;

}

.mp-sport-featured__content h3 a{

    color:var(--sport-text);

    text-decoration:none;

}

.mp-sport-featured__content h3 a:hover{

    color:var(--sport-primary);

}

.mp-sport-featured__content p{

    margin:0;

    color:var(--sport-muted);

    font-size:16px;

    line-height:1.8;

}

.mp-sport-featured__meta{

    display:flex;
    flex-wrap:wrap;
    gap:18px;

    margin-top:22px;

    color:var(--sport-muted);

    font-size:14px;

}

.mp-sport-featured__meta span{

    display:flex;
    align-items:center;
    gap:8px;

}

.mp-sport-featured__meta i{

    color:var(--sport-primary);

}

/* ==========================================================
   SIDEBAR
========================================================== */

.mp-sport-sidebar{

    background:#fff;

    border-radius:18px;

    padding:24px;

    box-shadow:0 12px 40px rgba(0,0,0,.08);

}

.mp-sport-sidebar h3{

    margin:0 0 22px;

    font-family:Poppins,sans-serif;

    font-size:22px;

    color:var(--sport-secondary);

    border-left:5px solid var(--sport-primary);

    padding-left:14px;

}

.mp-sport-live{

    padding:18px 0;

    border-bottom:1px solid var(--sport-border);

}

.mp-sport-live:last-child{

    border:none;

}

.mp-sport-live__label{

    display:inline-block;

    margin-bottom:10px;

    background:#dcfce7;

    color:#166534;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    padding:6px 12px;

    border-radius:50px;

}

.mp-sport-live h4{

    margin:0;

    font-size:17px;

    line-height:1.5;

}

.mp-sport-live h4 a{

    color:var(--sport-text);

    text-decoration:none;

}

.mp-sport-live h4 a:hover{

    color:var(--sport-primary);

}

.mp-sport-live__meta{

    margin-top:10px;

    font-size:13px;

    color:var(--sport-muted);

}

/* ==========================================================
   SPORTS TICKER
========================================================== */

.mp-sport-ticker{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin:0 30px 35px;

}

.mp-sport-ticker__item{

    background:linear-gradient(135deg,#166534,#15803d);

    color:#fff;

    border-radius:14px;

    padding:18px 22px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.mp-sport-ticker__item:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.mp-sport-ticker__item strong{

    display:block;

    margin-bottom:8px;

    font-size:15px;

    font-weight:700;

    letter-spacing:.4px;

}

.mp-sport-ticker__item span{

    display:block;

    font-size:13px;

    opacity:.9;

}

/* ==========================================================
   ADVERTISEMENT
========================================================== */

.mp-sport-ad{

    margin:0 30px 35px;

}

.mp-sport-ad .widget{

    margin:0;

}

.mp-ad-placeholder{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:90px;

    background:#eef2f7;

    border:2px dashed #cbd5e1;

    border-radius:14px;

    color:#64748b;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

/* ==========================================================
   SPORTS GRID
========================================================== */

.mp-sport-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    padding:0 30px 35px;

}

.mp-sport-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 28px rgba(0,0,0,.08);

    transition:.35s;

}

.mp-sport-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(0,0,0,.15);

}

.mp-sport-card__image{

    display:block;

    overflow:hidden;

}

.mp-sport-card__image img{

    width:100%;

    height:210px;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.mp-sport-card:hover .mp-sport-card__image img{

    transform:scale(1.08);

}

.mp-sport-card__content{

    padding:20px;

}

.mp-sport-card__label{

    display:inline-block;

    margin-bottom:12px;

    background:#dcfce7;

    color:#166534;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.6px;

    padding:6px 12px;

    border-radius:30px;

}

.mp-sport-card h4{

    margin:0;

    font-size:20px;

    line-height:1.45;

    font-family:Poppins,sans-serif;

}

.mp-sport-card h4 a{

    color:var(--sport-text);

    text-decoration:none;

    transition:.3s;

}

.mp-sport-card h4 a:hover{

    color:var(--sport-primary);

}

.mp-sport-card__meta{

    display:flex;

    justify-content:space-between;

    margin-top:18px;

    font-size:13px;

    color:var(--sport-muted);

}

.mp-sport-card__meta span{

    display:flex;

    align-items:center;

    gap:6px;

}

.mp-sport-card__meta i{

    color:var(--sport-primary);

}

/* ==========================================================
   FOOTER
========================================================== */

.mp-sport-footer{

    padding:0 30px 35px;

    text-align:center;

}

.mp-sport-footer .mp-category-grid__button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    background:#166534;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.mp-sport-footer .mp-category-grid__button:hover{

    background:#14532d;

    transform:translateY(-2px);

}


/* ==========================================================
   ANIMATIONS
========================================================== */

.mp-sport-featured,
.mp-sport-card,
.mp-sport-live,
.mp-sport-ticker__item{

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        color .35s ease;

}

.mp-sport-featured:hover,
.mp-sport-card:hover{

    transform:translateY(-6px);

}

.mp-sport-card:hover .mp-sport-card__label{

    background:var(--sport-primary);

    color:#fff;

}

.mp-sport-live:hover{

    padding-left:10px;

}

.mp-sport-live:hover h4 a{

    color:var(--sport-primary);

}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width:1200px){

.mp-sport-dashboard{

    grid-template-columns:1fr;

}

.mp-sport-grid{

    grid-template-columns:repeat(2,1fr);

}

.mp-sport-ticker{

    grid-template-columns:repeat(2,1fr);

}

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

.mp-sport{

    margin:35px 0;

    border-radius:12px;

}

.mp-sport__header{

    flex-direction:column;

    align-items:flex-start;

    padding:20px;

}

.mp-sport__title{

    font-size:24px;

}

.mp-sport-dashboard{

    padding:20px;

    gap:20px;

}

.mp-sport-featured__image img{

    height:260px;

}

.mp-sport-featured__content{

    padding:20px;

}

.mp-sport-featured__content h3{

    font-size:24px;

}

.mp-sport-sidebar{

    padding:20px;

}

.mp-sport-ticker{

    grid-template-columns:1fr;

    margin:0 20px 25px;

}

.mp-sport-ad{

    margin:0 20px 25px;

}

.mp-sport-grid{

    grid-template-columns:1fr;

    gap:20px;

    padding:0 20px 25px;

}

.mp-sport-footer{

    padding:0 20px 25px;

}

.mp-sport-card__image img{

    height:220px;

}

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:480px){

.mp-sport__title{

    font-size:21px;

}

.mp-sport-featured__content h3{

    font-size:21px;

    line-height:1.35;

}

.mp-sport-live h4{

    font-size:16px;

}

.mp-sport-card h4{

    font-size:18px;

}

.mp-sport-card__meta{

    flex-direction:column;

    gap:8px;

    align-items:flex-start;

}

.mp-sport-footer .mp-category-grid__button{

    width:100%;

}

}

/* ==========================================================
   ACCESSIBILITY
========================================================== */

.mp-sport a:focus-visible{

    outline:3px solid var(--sport-gold);

    outline-offset:3px;

    border-radius:6px;

}

/* ==========================================================
   IMAGE RENDERING
========================================================== */

.mp-sport img{

    max-width:100%;

    height:auto;

    display:block;

}

/* ==========================================================
   END
========================================================== */

