/* SPLIT SECTION: WELCOME & PITMAN */
.info-split-section { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; padding: 60px 5%; background: #fefefe; align-items: start; }

/* Welcome Left */
.welcome-box h2 { color: var(--primary-blue); font-size: 2.2rem; border-left: 6px solid var(--accent-gold); padding-left: 15px; margin-bottom: 25px; }
.welcome-box p { line-height: 1.8; color: #555; font-size: 1.05rem; margin-bottom: 15px; }

/* Pitman Right */
.pitman-card { background: var(--primary-blue); color: #fff; padding: 30px; border-radius: 20px; text-align: center; box-shadow: 0 15px 30px rgba(10, 61, 98, 0.2); }
.pitman-card img { width: 150px; height: 150px; border-radius: 15px; object-fit: cover; margin-bottom: 20px; border: 3px solid var(--white); }
.pitman-card h3 { color: var(--accent-gold); margin-bottom: 5px; font-size: 1.5rem; }
.pitman-card .dates { font-weight: 600; font-size: 0.9rem; margin-bottom: 15px; display: block; opacity: 0.9; }
.pitman-card p { font-size: 0.95rem; line-height: 1.6; font-style: italic; }

/* Section Specific Responsive */
@media (max-width: 900px) {
    .info-split-section { grid-template-columns: 1fr; }
}