/* --- GLOBAL THEME & HEADER RESET --- */
.ns-rawls-theme {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333; line-height: 1.6; background-color: #fff; overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Kill the heavy top margins TTU adds to headers by default */
.ns-rawls-theme h2 {
    margin: 0 0 20px 0 !important;
    padding-top: 0 !important;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
}

/* --- HERO SECTION (Tightened) --- */
.hero-intro { background-color: #f4f4f4; padding: 30px 0; border-bottom: 1px solid #ddd; width: 100%; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1.2; }
.hero-intro h1 { font-size: 3rem; font-weight: 800; color: #000; text-transform: uppercase; margin: 0 0 10px 0; }
.hero-description { font-size: 1.15rem; color: #444; margin-bottom: 20px; }
.hero-photo { width: 100%; max-width: 400px; height: auto; box-shadow: 12px 12px 0px #cc0000; border: 1px solid #ddd; }
.btn-red { background-color: #cc0000; color: #fff !important; padding: 14px 35px; text-decoration: none !important; font-weight: bold; text-transform: uppercase; display: inline-block; }

/* --- PROGRAM TILES (Tightened + Hover Red Bar) --- */
.programs-overview-section { padding: 30px 0 10px 0; width: 100%; }
.programs-overview-section h2 { font-size: 2.2rem; text-align: center; }

.program-tile { 
    display: flex !important; 
    flex-direction: row !important; 
    align-items: center !important; 
    justify-content: space-between !important; 
    background-color: #f4f4f4; 
    padding: 25px 10%; 
    border-bottom: 1px solid #e0e0e0; 
    border-left: 0px solid transparent;
    width: 100%; 
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.program-tile:hover { 
    background-color: #f0f0f0; 
    border-left: 12px solid #cc0000 !important; 
    padding-left: calc(10% - 12px); 
}

.tile-content { flex: 1; padding-right: 30px; }
.tile-content h3 { font-size: 1.3rem; font-weight: 800; color: #000; margin-bottom: 5px; text-transform: uppercase; }

.btn-tile-learn { 
    background-color: #000 !important; 
    color: #fff !important; 
    padding: 12px 30px !important; 
    text-decoration: none !important; 
    font-weight: 800 !important; 
    text-transform: uppercase !important; 
    font-size: 0.85rem !important;
    display: inline-block !important;
}

/* --- CONCENTRATIONS (Tightened) --- */
.concentrations-section { padding: 30px 0; background-color: #fff; text-align: center; }
.concentrations-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.concentration-card { flex: 1; min-width: 280px; max-width: 380px; padding: 25px; background: #fafafa; border: 1px solid #eee; text-align: left; transition: 0.3s; }
.concentration-card:hover { transform: translateY(-3px); border-color: #cc0000; }
.con-icon { color: #cc0000; font-size: 1.3rem; margin-bottom: 10px; }

/* --- TESTIMONIAL (Tightened) --- */
.testimonial-band { background-color: #ffffff !important; padding: 40px 20px; text-align: center; color: #000 !important; border-top: 1px solid #eee; border-bottom: 1px solid #eee; width: 100%; }
.testimonial-image img { width: 110px; height: 110px; border-radius: 50%; border: 3px solid #cc0000; margin-bottom: 15px; object-fit: cover; display: inline-block; }
.quote-text { font-size: 1.6rem !important; font-style: italic; max-width: 800px; margin: 0 auto 15px !important; color: #000 !important; line-height: 1.4; }
.grad-name { color: #cc0000 !important; font-weight: 800; text-transform: uppercase; display: block; font-size: 1.2rem; }

/* --- CONTACT SECTION (Tightened) --- */
.contact-section { padding: 30px 0; background-color: #fff; width: 100%; text-align: center; }
.contact-grid { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.contact-card { flex: 1; min-width: 310px; max-width: 450px; padding: 25px; background: #fff; border: 1px solid #eee; border-left: 6px solid #cc0000; text-align: left; }
.contact-card h4 { color: #cc0000; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 8px; font-weight: 800; }
.contact-link { color: #000 !important; font-weight: bold; text-decoration: none; display: block; margin-bottom: 5px; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-flex { flex-direction: column; text-align: center; padding: 20px 0; }
    .program-tile { flex-direction: column !important; text-align: center; padding: 25px 20px; }
    .program-tile:hover { border-left: 0px !important; border-top: 8px solid #cc0000 !important; }
    .tile-content { padding-right: 0; margin-bottom: 15px; }
}