/* =====================================================
   SPORTACADEMY UI
   Modern Dark Theme
   Part 1
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --bg:#050816;
    --bg2:#0d1328;
    --card:#121932;
    --card2:#182140;

    --blue:#3B82F6;
    --cyan:#22D3EE;
    --green:#10B981;
    --yellow:#FACC15;

    --text:#ffffff;
    --light:#c6d0e7;
    --border:rgba(255,255,255,.08);

    --radius:18px;

}

html{

    scroll-behavior:smooth;
    overflow-x:hidden;
    max-width:100%;

}

body{

    background:linear-gradient(180deg,#050816,#081122,#050816);

    color:var(--text);

    font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

    overflow-x:hidden;
    max-width:100%;
    width:100%;

}

.fa-solid,
.fa-regular,
.fa-brands{
display:inline-block;
width:1.25em;
min-width:1.25em;
line-height:1;
text-align:center;
font-synthesis:none;
}


/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#071020;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(var(--blue),var(--cyan));

border-radius:30px;

}


/* ==========================
HERO
========================== */

.hero{

min-height:780px;

padding:170px 7% 100px;

display:flex;

justify-content:space-between;

align-items:center;

gap:70px;

overflow-x:hidden;
max-width:100%;
width:100%;
box-sizing:border-box;

}

.hero-left{

flex:1;
min-width:0;
max-width:100%;
width:100%;

}

.small-title{

display:inline-block;

padding:8px 18px;

border-radius:40px;

background:rgba(34,211,238,.12);

color:var(--cyan);

font-size:13px;

letter-spacing:2px;

margin-bottom:20px;

}

.hero h1{

font-size:68px;

line-height:1.15;

font-weight:800;

margin-bottom:25px;

}

.hero h1 span{

background:linear-gradient(90deg,#4cc9ff,#22D3EE,#00f5d4);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero-desc{

font-size:18px;

line-height:1.8;

max-width:650px;

color:var(--light);

margin-bottom:40px;

}


/* =======================
SEARCH
======================= */

.search-box{

display:flex;

align-items:center;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

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

border-radius:20px;

padding:15px;

gap:15px;

max-width:100%;
width:100%;
box-sizing:border-box;

}

.search-item{

flex:1;

display:flex;

align-items:center;

gap:14px;

padding:12px 20px;

background:#0f1732;

border-radius:14px;

}

.visually-hidden{
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0,0,0,0);
white-space:nowrap;
border:0;
}

.search-item i{

font-size:18px;

color:var(--cyan);
width:22px;
min-width:22px;
text-align:center;

}

.search-item input{

background:none;

border:none;

outline:none;

color:white;

width:100%;

font-size:15px;

}

.search-item select{

background:none;

border:none;

outline:none;

width:100%;

color:white;

font-size:15px;

}

.search-box button{

padding:18px 30px;

border:none;

border-radius:15px;

cursor:pointer;

font-size:15px;

font-weight:600;

background:linear-gradient(135deg,#2563EB,#22D3EE);

color:white;

transition:.35s;

}

.search-box button:hover{

transform:translateY(-3px);

box-shadow:0 0 35px rgba(34,211,238,.45);

}


/* =====================
STATS
===================== */

.stats{

display:flex;
flex-wrap:wrap;
justify-content:flex-start;
gap:24px 40px;

margin-top:55px;
min-height:72px;
width:100%;
max-width:100%;
box-sizing:border-box;

}

.stats > div{
min-width:0;
flex:0 1 auto;
}

.stat-number{
display:block;

font-size:38px;

color:var(--cyan);

line-height:1.2;
font-weight:800;
min-height:46px;
font-variant-numeric:tabular-nums;
}

.stats p{

color:#bcc7df;

margin-top:5px;

}


/* ====================
RIGHT HERO
==================== */

.hero-right{

flex:1;

display:flex;

justify-content:center;

align-items:center;

position:relative;
min-height:620px;
min-width:0;
max-width:100%;
width:100%;
overflow:hidden;

}

.circle{

position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);

width:min(520px, 90vw);

height:min(520px, 90vw);

background:radial-gradient(circle,
rgba(59,130,246,.30),
transparent 70%);

filter:blur(40px);

border-radius:50%;
pointer-events:none;

}

.hero-visual{
position:relative;
z-index:10;
width:100%;
max-width:620px;
display:flex;
justify-content:center;
align-items:center;
}

.hero-right img,
.hero-visual img{

width:100%;

max-width:620px;
aspect-ratio:1/1;
height:auto;

position:relative;

z-index:10;

filter:drop-shadow(0 40px 60px rgba(0,0,0,.55));

}

.hero-image-fallback{
display:none;
flex-direction:column;
align-items:center;
justify-content:center;
gap:12px;
width:100%;
max-width:320px;
aspect-ratio:1/1;
border-radius:24px;
background:linear-gradient(135deg,rgba(59,130,246,.25),rgba(34,211,238,.12));
border:1px solid var(--border);
color:var(--cyan);
font-weight:700;
}

.hero-image-fallback i{
font-size:64px;
}


/* Animation */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}


/* ======================
SECTION TITLE
====================== */

section{

padding:90px 7%;

}
.blog-content section{

padding: 0 !important;

}

.section-title{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:40px;

}

.section-title h2{

font-size:42px;

}

.section-title a{

text-decoration:none;

color:var(--cyan);

font-weight:600;

}

.featured a,
.blog-section a,
.sports a{
text-decoration:none;
}

.featured a:not(.bottom a),
.blog-section a{
color:inherit;
}

/* ======================
CMS CARDS
====================== */

.cards,
.sports-grid,
.blog-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:28px;
}

.card,
.blog-card,
.sport-box,
.cta-card,
.ad-card,
.empty-state{
border:1px solid var(--border);
border-radius:var(--radius);
background:rgba(255,255,255,.055);
box-shadow:0 24px 70px rgba(0,0,0,.22);
}

.card{
overflow:hidden;
display:flex;
flex-direction:column;
min-height:470px;
}

.card-media{
height:210px;
display:grid;
place-items:center;
background:linear-gradient(135deg,rgba(59,130,246,.32),rgba(34,211,238,.18));
}

.card-media i{
font-size:72px;
color:white;
filter:drop-shadow(0 18px 24px rgba(0,0,0,.35));
}

.card-media img{
display:block;
width:100%;
height: 210px;
object-fit:cover;
}

.green-card .card-media{background:linear-gradient(135deg,rgba(16,185,129,.35),rgba(34,211,238,.16));}
.yellow-card .card-media{background:linear-gradient(135deg,rgba(250,204,21,.35),rgba(59,130,246,.16));}
.cyan-card .card-media{background:linear-gradient(135deg,rgba(34,211,238,.36),rgba(16,185,129,.16));}
.pink-card .card-media{background:linear-gradient(135deg,rgba(236,72,153,.3),rgba(59,130,246,.16));}
.violet-card .card-media{background:linear-gradient(135deg,rgba(139,92,246,.34),rgba(34,211,238,.16));}

.card-body{
padding:24px;
display:flex;
flex-direction:column;
flex:1;
}

.tag,
.ad-label,
.blog-card span{
display:inline-flex;
align-items:center;
border-radius:50px;
padding:7px 13px;
background:rgba(34,211,238,.12);
color:var(--cyan);
font-size:12px;
font-weight:700;
text-transform:uppercase;
}

.card h3,
.blog-card h3{
margin:16px 0 10px;
font-size:22px;
line-height:1.3;
}

.card h3{
min-height:58px;
}

.card h3 a,
.blog-card h3 a{
color:inherit;
text-decoration:none;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

.card h3 a:hover,
.blog-card h3 a:hover{
color:var(--cyan);
}

.card p,
.blog-card p,
.ad-card p{
color:var(--light);
line-height:1.7;
}

.card p{
min-height:54px;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

.bottom{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
margin-top:auto;
padding-top:22px;
color:var(--yellow);
font-size:14px;
font-weight:700;
}

.bottom span{
min-width:0;
display:-webkit-box;
-webkit-line-clamp:1;
-webkit-box-orient:vertical;
overflow:hidden;
color:var(--yellow);
}

.bottom a,
.ad-card a,
.cta-card a{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:42px;
padding:0 18px;
border:none;
border-radius:50px;
background:linear-gradient(135deg,var(--blue),var(--cyan));
color:white;
text-decoration:none;
font-size:14px;
font-weight:700;
white-space:nowrap;
}

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

.sports h2{
font-size:42px;
margin-bottom:40px;
}

.sport-box{
display:block;
padding:34px 24px;
color:white;
text-align:center;
text-decoration:none;
transition:.35s;
}

.sport-box:hover{
transform:translateY(-8px);
border-color:rgba(34,211,238,.35);
}

.sport-box i{
font-size:42px;
color:var(--cyan);
margin-bottom:18px;
}

.sport-box h3{
font-size:21px;
margin-bottom:8px;
}

.sport-box p{
color:var(--light);
}

/* ======================
CITY BROWSE
====================== */

.home-coach-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:24px;
}

.home-coach-card{
padding:24px;
border:1px solid var(--border);
border-radius:var(--radius);
background:rgba(255,255,255,.055);
box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.home-coach-avatar{
display:grid;
place-items:center;
width:58px;
height:58px;
margin-bottom:15px;
border-radius:50%;
background:linear-gradient(135deg,var(--blue),var(--cyan));
color:#fff;
font-weight:800;
}

.home-coach-card h3{margin:0 0 5px}.home-coach-card strong{display:block;color:var(--cyan)}.home-coach-card span,.home-coach-card p{display:block;margin-top:8px;color:var(--light);font-size:14px}
.home-coach-card a{display:inline-flex;margin-top:16px;padding:10px 14px;border-radius:8px;background:var(--blue);color:#fff!important;font-weight:700;text-decoration:none}

@media(max-width:1024px){.home-coach-grid{grid-template-columns:1fr}}

.city-browse-grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:18px;
}

.city-browse-card{
display:grid;
grid-template-columns:auto 1fr;
grid-template-areas:"icon title" "icon meta";
gap:.25rem .75rem;
align-items:center;
min-height:96px;
padding:20px;
border:1px solid var(--border);
border-radius:var(--radius);
background:rgba(255,255,255,.055);
box-shadow:0 18px 50px rgba(0,0,0,.16);
color:#fff;
text-decoration:none;
transition:.3s ease;
}

.city-browse-card:hover{
transform:translateY(-4px);
border-color:var(--cyan);
}

.city-browse-card span{
grid-area:icon;
display:grid;
place-items:center;
width:42px;
height:42px;
border-radius:50%;
background:rgba(34,211,238,.12);
color:var(--cyan);
}

.city-browse-card strong{
grid-area:title;
font-size:15px;
line-height:1.35;
}

.city-browse-card small{
grid-area:meta;
color:var(--light);
font-weight:700;
}

/* ======================
ADS AND BLOGS
====================== */

.ad-strip{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:24px;
padding-top:20px;
}

.ad-card{
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
padding:28px;
background:linear-gradient(135deg,rgba(59,130,246,.18),rgba(16,185,129,.14));
}

.ad-card h2{
margin:12px 0 6px;
font-size:28px;
}

.blog-card{
padding:28px;
}

.empty-state{
grid-column:1/-1;
padding:32px;
color:var(--light);
text-align:center;
}

/* ======================
HOME SEO CONTENT
====================== */

.home-seo-section{
display:grid;
grid-template-columns:minmax(0,.95fr) minmax(0,1.35fr);
gap:34px;
align-items:stretch;
padding-top:70px;
}

.home-seo-copy,
.home-seo-card{
border:1px solid rgba(34,211,238,.16);
border-radius:var(--radius);
background:
radial-gradient(circle at 90% 8%, rgba(34,211,238,.14), transparent 30%),
rgba(255,255,255,.055);
box-shadow:0 24px 70px rgba(0,0,0,.22);
}

.home-seo-copy{
display:flex;
flex-direction:column;
justify-content:center;
padding:34px;
}

.home-seo-copy h2{
margin:10px 0 18px;
font-size:clamp(30px,4vw,44px);
line-height:1.12;
}

.home-seo-copy p:not(.small-title){
margin:0 0 16px;
color:var(--light);
font-size:16px;
line-height:1.8;
}

.home-seo-copy p:last-child{
margin-bottom:0;
}

.home-seo-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:18px;
}

.home-seo-card{
display:flex;
min-height:250px;
flex-direction:column;
padding:24px;
transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}

.home-seo-card:hover{
transform:translateY(-4px);
border-color:rgba(34,211,238,.48);
box-shadow:0 30px 80px rgba(0,0,0,.3);
}

.home-seo-card i{
display:grid;
place-items:center;
width:48px;
height:48px;
margin-bottom:18px;
border:1px solid rgba(34,211,238,.24);
border-radius:999px;
background:rgba(34,211,238,.12);
color:var(--cyan);
font-size:20px;
}

.home-seo-card h3{
margin:0 0 10px;
font-size:20px;
line-height:1.3;
}

.home-seo-card p{
margin:0;
color:var(--light);
line-height:1.7;
}

.home-seo-card a{
display:inline-flex;
width:max-content;
max-width:100%;
margin-top:auto;
padding-top:18px;
color:var(--cyan);
font-weight:800;
line-height:1.35;
text-decoration:none;
}

/* ======================
CTA AND FOOTER
====================== */

.cta{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:28px;
}

.cta-card{
padding:32px;
}

.cta-card.blue{
background:linear-gradient(135deg,rgba(59,130,246,.28),rgba(34,211,238,.12));
}

.cta-card.green{
background:linear-gradient(135deg,rgba(16,185,129,.28),rgba(34,211,238,.10));
}

.cta-card h2{
font-size:32px;
margin-bottom:12px;
}

.cta-card p{
color:var(--light);
margin-bottom:26px;
}

/* ======================
   CONTACT SECTION
====================== */

.contact-section {
  padding-top: 70px;
  padding-bottom: 48px;
}

/* Video block */
.contact-video-title {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-video-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.contact-video {
  width: min(760px, calc(100% - 32px));
  aspect-ratio: 16 / 9;
  min-height: 180px;
  margin: 28px auto 0;
  border-radius: 16px;
  overflow: hidden;
  background: #050816;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.contact-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.contact-video-link {
  margin: 14px auto 0;
  text-align: center;
}

.contact-video-link a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-video-link a:hover {
  opacity: 0.85;
}

/* Section title */
.contact-title {
  margin-top: 56px;
  text-align: center;
}

.contact-title h2 {
  margin-bottom: 8px;
}

.contact-title a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.contact-title a:hover {
  text-decoration: underline;
}

/* Form card */
.contact-form {
  width: 100%;
  max-width: 780px;
  margin: 32px auto 0;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Form rows – two columns on desktop */
.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form .form-group {
  min-width: 0;
}

.contact-form .form-group.full {
  grid-column: 1 / -1;
}

/* Labels */
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
}

/* Inputs & textarea */
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  margin-bottom: 22px;
}

/* Submit button */
.contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 32px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #3B82F6, #22D3EE);
  color: #050816;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.35);
}

.contact-form button[type="submit"]:active {
  transform: translateY(0);
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 1024px) {
  .contact-section {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .form-group {
    margin-bottom: 18px;
  }

  .contact-form textarea {
    margin-bottom: 20px;
  }
}

@media (max-width: 560px) {
  .contact-section {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .contact-video {
    width: calc(100% - 24px);
    border-radius: 12px;
  }

  .contact-video iframe {
    border-radius: 12px;
  }

  .contact-title {
    margin-top: 40px;
  }

  .contact-form {
    margin-top: 24px;
    padding: 22px 16px;
    border-radius: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 13px 14px;
    font-size: 14px;
  }

  .contact-form button[type="submit"] {
    width: 100%;
    min-height: 48px;
  }
}
/* ======================
   MAIN LAYOUT RESPONSIVE
====================== */

@media (max-width: 1024px) {
  .hero{
    flex-direction:column;
    min-height:auto;
    padding:140px 5% 60px;
    gap:36px;
    text-align:center;
    overflow-x:hidden;
  }

  .hero-left,
  .hero-right{
    width:100%;
    max-width:100%;
  }

  .hero h1{
    font-size:clamp(32px, 6vw, 44px);
  }

  .hero-desc{
    margin-left:auto;
    margin-right:auto;
    max-width:100%;
    font-size:16px;
  }

  .search-box{
    flex-direction:column;
    align-items:stretch;
    max-width:100%;
    width:100%;
    padding:12px;
  }

  .search-item{
    width:100%;
  }

  .search-box button{
    width:100%;
  }

  .stats{
    justify-content:center;
    gap:20px 28px;
    margin-top:36px;
  }

  .stat-number{
    font-size:30px;
    min-height:36px;
  }

  .hero-right{
    min-height:280px;
    max-width:100%;
    overflow:hidden;
  }

  .circle{
    width:min(280px, 70vw);
    height:min(280px, 70vw);
  }

  .hero-visual,
  .hero-right img,
  .hero-visual img{
    max-width:min(420px, 88vw);
  }

  section{
    padding:60px 5%;
  }

  .section-title h2,
  .sports h2{
    font-size:30px;
  }

  .cards,
  .sports-grid,
  .blog-grid,
  .home-coach-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .city-browse-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ad-strip{
    grid-template-columns:1fr;
  }

  .home-seo-section{
    grid-template-columns:1fr;
  }

  .cta{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px) {
  .hero{
    padding:120px 4% 48px;
    gap:28px;
  }

  .hero h1{
    font-size:clamp(28px, 8vw, 34px);
  }

  .stats{
    gap:16px 12px;
    justify-content:space-between;
  }

  .stats > div{
    flex:1 1 30%;
    text-align:center;
    min-width:0;
  }

  .stat-number{
    font-size:24px;
  }

  .stats p{
    font-size:12px;
  }

  .circle{
    width:min(220px, 65vw);
    height:min(220px, 65vw);
  }

  .hero-right{
    min-height:220px;
  }

  .hero-visual,
  .hero-right img,
  .hero-visual img{
    max-width:min(280px, 80vw);
  }

  .cards,
  .sports-grid,
  .blog-grid,
  .city-browse-grid,
  .home-coach-grid,
  .home-seo-grid{
    grid-template-columns:1fr;
  }

  .home-seo-copy,
  .home-seo-card{
    padding:22px;
  }

  .section-title{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}

/* ======================
HOME CARD ALIGNMENT FIX
====================== */

#academies .cards{
align-items:stretch;
}

#academies .card{
height:100%;
min-height:500px;
display:flex;
flex-direction:column;
}

#academies .card-media,
#academies .card-media img{
height:210px;
min-height:210px;
}

#academies .card-body{
display:flex;
flex-direction:column;
flex:1;
min-height:290px;
}

#academies .tag{
max-width:100%;
width:max-content;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

#academies .card h3{
height:58px;
min-height:58px;
margin:16px 0 10px;
overflow:hidden;
}

#academies .card h3 a{
color:#fff !important;
text-decoration:none !important;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

#academies .card h3 a:hover{
color:var(--cyan) !important;
}

#academies .card p{
height:54px;
min-height:54px;
margin:0;
color:var(--light);
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

#academies .bottom{
margin-top:auto;
padding-top:22px;
min-height:64px;
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
}

#academies .bottom span{
min-width:0;
max-width:58%;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
color:var(--yellow);
}

#academies .bottom a{
flex:0 0 auto;
color:#fff !important;
text-decoration:none !important;
white-space:nowrap;
}

#academies a,
#blog a,
.home-blog-card{
text-decoration:none !important;
}

#blog .home-blog-item{
display:flex;
flex-direction:column;
height:100%;
min-height:430px;
overflow:hidden;
padding:0;
background:#fff;
border:1px solid #e1e8f2;
border-radius:12px;
box-shadow:0 2px 8px rgba(0,0,0,.08);
color:#333 !important;
transition:all .3s ease;
}

#blog .home-blog-item:hover{
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

#blog .home-blog-item .blog-item-image{
display:flex;
align-items:center;
justify-content:center;
width:100%;
height:200px;
min-height:200px;
background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);
color:#fff;
font-size:3rem;
}

#blog .home-blog-item .blog-item-image img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

#blog .home-blog-item .blog-item-content{
display:flex;
flex-direction:column;
flex:1;
padding:1.5rem;
}

#blog .home-blog-item .blog-item-sport{
display:inline-block;
width:max-content;
max-width:100%;
background:#f0f0f0;
padding:.25rem .75rem;
border-radius:20px;
font-size:.75rem;
font-weight:600;
color:#666;
margin-bottom:.75rem;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
text-transform:none;
}

#blog .home-blog-item .blog-item-title{
height:46px;
min-height:46px;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
font-size:1.1rem;
font-weight:600;
line-height:1.4;
color:#333;
margin-bottom:.5rem;
}

#blog .home-blog-item .blog-item-excerpt{
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
font-size:.9rem;
line-height:1.6;
color:#666;
margin-bottom:1rem;
}

#blog .home-blog-item .blog-item-footer{
display:flex;
justify-content:space-between;
align-items:center;
gap:.75rem;
margin-top:auto;
padding-top:1rem;
border-top:1px solid #eee;
font-size:.8rem;
color:#999;
}

#blog .home-blog-item .blog-item-footer span{
display:inline;
background:transparent;
padding:0;
border-radius:0;
font-size:inherit;
font-weight:500;
color:inherit;
text-transform:none;
}

#blog .home-blog-item:hover .blog-item-title{
color:#667eea;
}

@media(max-width:1024px){
#academies .card{
min-height:auto;
}

#academies .card-body{
min-height:auto;
}

.contact-section{
padding-left:16px;
padding-right:16px;
}

.contact-video{
width:100%;
margin-top:18px;
border-radius:12px;
}

.contact-video iframe{
border-radius:12px;
}

.contact-section form{
max-width:100% !important;
padding:22px !important;
}

.contact-section form > div[style*="grid-template-columns"]{
grid-template-columns:1fr !important;
}
}
