/* =========================
TESOL COURSES PAGE
========================= */

.courses-section{

max-width:1200px;
margin:140px auto 80px;
padding:0 20px;

}

.courses-title{

font-family:"Merriweather",serif;
font-size:36px;
text-align:center;
margin-bottom:20px;
color:#1f2d3d;

}

.courses-intro{

font-family:"Inter",sans-serif;
text-align:center;
color:#555;
max-width:700px;
margin:0 auto 60px;
font-size:15px;

}

/* GRID */

.courses-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;

}

/* CARD */

.course-card{

background:white;
padding:30px;
border-radius:10px;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
transition:all .3s;

}

.course-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);

}

/* TITLE */

.course-card h3{

font-family:"Merriweather",serif;
font-size:20px;
margin-bottom:12px;
color:#1f2d3d;

}

/* TEXT */

.course-meta{

font-family:"Inter",sans-serif;
font-size:14px;
color:#555;
margin-bottom:20px;
line-height:1.6;

}

/* DETAILS */

.course-details{

list-style:none;
padding:0;
margin-bottom:20px;

}

.course-details li{

font-family:"Inter",sans-serif;
font-size:14px;
margin-bottom:6px;

}

/* BUTTON */

.course-btn{

display:inline-block;
background:#1f3c88;
color:white;
padding:10px 16px;
border-radius:6px;
font-size:14px;
text-decoration:none;
transition:all .2s;

}

.course-btn:hover{

background:#162f66;

}

/* RESPONSIVE */

@media(max-width:768px){

.courses-title{

font-size:30px;

}

}