.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;
}

}
.schedule-container {

    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;

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

}


/* Title */

.schedule-title {

    text-align: center;
    font-size: 42px;
    font-weight: normal;
    letter-spacing: 0.04em;
    margin-bottom: 8px;

}

.schedule-subtitle {

    display: block;
    font-size: 20px;
    margin-top: 6px;
    font-style: italic;
    color: #555;

}


/* Day Heading */

.day-heading {

    margin-top: 50px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: normal;
    border-bottom: 2px solid #2c5d8a;
    padding-bottom: 6px;

}


/* DESKTOP – 3 Columns */

.schedule-header,
.schedule-row {

    display: grid;
    grid-template-columns: 160px 1fr 260px;
    column-gap: 20px;

}


.schedule-header {

    font-weight: bold;
    padding: 12px 0;
    border-bottom: 2px solid #444;

}


.schedule-row {

    padding: 16px 0;
    border-bottom: 1px solid #ddd;

}


.schedule-row:nth-child(even) {

    background: #f5f9fc;

}


.time {

    font-weight: bold;

}


.location {

    font-style: italic;

}


/* MOBILE – Stack Vertically */

@media screen and (max-width: 768px) {

.schedule-header {
    display: none;
}

.schedule-row {
    grid-template-columns: 1fr;
    border: 1px solid #ddd;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    background: #ffffff;
}

.time::before {
    content: "Time: ";
    font-weight: bold;
}

.event::before {
    content: "Event: ";
    font-weight: bold;
}

.location::before {
    content: "Location: ";
    font-weight: bold;
}

}