.dealer-article{

max-width:1000px;

/* moved closer to top */
margin:0 auto 0px auto;

padding:20px 20px 20px 20px;

background:white;

font-family:Georgia, "Times New Roman", serif;
}


.dealer-title{

text-align:center;
font-size:38px;
margin:10px 0 10px 0;
}


.dealer-divider{

width:140px;
height:2px;
background:#444;
margin:0 auto 35px auto;
}


/* COLUMN CONTAINER */

.dealer-columns{

display:flex;
gap:60px;
}


/* LEFT COLUMN — VERTICAL DIVIDER */

.dealer-column:first-child{

border-right:1px solid #cfcfcf;

padding-right:40px;
}


/* RIGHT COLUMN SPACING */

.dealer-column:last-child{

padding-left:20px;
}


.dealer-column{

flex:1;
}


.dealer{

margin-bottom:28px;

line-height:1.6;

font-size:17px;
}


.dealer strong{

font-size:18px;
letter-spacing:0.02em;
}


.dealer a{

color:#1a4fa3;
text-decoration:none;
}


.dealer a:hover{

text-decoration:underline;
}



/* MOBILE — REMOVE DIVIDER */

@media (max-width:768px){

.dealer-columns{

flex-direction:column;
}

.dealer-column:first-child{

border-right:none;
padding-right:0;
}

.dealer-column:last-child{

padding-left:0;
}

}.rmss-schedule {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Georgia", "Times New Roman", serif;
}

/* Main Title */
.schedule-title {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    margin-bottom: 50px;
}

/* Dramatic Day Headings */
.day-heading {
    text-align: center;
    font-size: 1.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px double #444;
}

/* ===== 3 Column Layout ===== */
.schedule-row {
    display: grid;
    grid-template-columns: 120px 1fr 220px;  /* narrower time column */
    gap: 20px;
    padding: 16px 18px;
    border-bottom: 1px solid #ddd;
}

/* Vertical column dividers */
.schedule-row > div:not(:last-child) {
    border-right: 1px solid #ccc;
    padding-right: 15px;
}

/* Alternating gradient shading */
.schedule-row:nth-of-type(odd) {
    background: linear-gradient(
        to right,
        #f8fbff 0%,
        #e9f1f9 100%
    );
}

.schedule-row:nth-of-type(even) {
    background: #ffffff;
}

/* Time Column — darker & stronger */
.time {
    font-weight: 700;
    color: #1f2a44;
    white-space: nowrap;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

/* Event Column */
.event {
    line-height: 1.55;
}

/* Location Column */
.location {
    font-style: italic;
    color: #444;
}

/* ===== Mobile Layout ===== */
@media (max-width: 768px) {

    .schedule-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 15px 10px;
    }

    .schedule-row > div {
        border-right: none;
        padding-right: 0;
    }

    .time {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .location {
        margin-top: 4px;
    }
}