/**
 * LSAT Locations Page Styles
 */

/* Hero Banner */
.lsat-hero-banner {
    background-image: url('/uploads/gavel-balance-lsat.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

.lsat-hero-banner h1 {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

/* State/City listing - larger font sizes */
.display_state_value {
    font-size: 14px;
}

.display_city a {
    font-size: 13px;
}

.display_state {
    margin-bottom: 5px;
}

/* Schedule box */
.lsat-schedule-box {
    background: #e8f4f8;
    border: 1px solid #cde4ec;
    padding: 25px;
    margin: 30px 0;
    font-size: 13px;
    line-height: 1.6;
}

.lsat-schedule-box h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.lsat-schedule-box strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* City courses section */
.lsat-city-courses {
    margin: 30px 0;
    padding: 20px 0;
}

.lsat-city-courses h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
}

.lsat-city-courses strong {
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.lsat-city-courses p {
    margin-bottom: 10px;
    font-size: 13px;
}

/* Enrollment forms */
.lsat-enroll-form {
    margin-bottom: 25px;
    padding: 10px 0;
}

.lsat-enroll-form .radio {
    margin: 5px 0;
}

.lsat-enroll-form .radio label {
    font-size: 13px;
}

.lsat-enroll-form .btn-success {
    background-color: #5cb85c;
    border-color: #4cae4c;
    margin-top: 10px;
}

/* Course outline box */
.lsat-outline-box {
    background: #e8f4f8;
    border: 1px solid #cde4ec;
    padding: 25px;
    margin: 30px 0;
    font-size: 12px;
    line-height: 1.6;
}

.lsat-outline-box strong {
    color: #333;
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

.lsat-promo-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .lsat-city-column {
        flex: 0 0 25%;
    }
}

@media (max-width: 768px) {
    .lsat-city-column {
        flex: 0 0 33.33%;
    }

    .lsat-city-courses .col-md-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .lsat-city-column {
        flex: 0 0 50%;
    }
}
