/* =========================================
   CLAY CITY ISOLATED STYLES (clay-city.css)
   ========================================= */

/* 1. PAGE BACKGROUND */
#clay-city-page-wrapper {
    background-color: #0c2ef1 !important; /* Matches the Hero Blue */
    margin: 0;
    padding: 0;
}

/* 2. THE HERO SECTION */
.clay-city-hero-row { 
    width: 100%; 
    background-color: #0c2ef1; 
    padding: 60px 20px; 
    text-align: center; 
    color: white; 
    border-bottom: 2px solid white; 
}

.clay-city-hero-row h1 { 
    font-size: clamp(2rem, 6vw, 3.5rem) !important; /* Restores the large, bold impact */
    margin: 0; 
    font-family: 'Times New Roman', serif; 
    text-transform: Capitalize; 
    font-weight: 700;
    letter-spacing: 4px;
}

.clay-city-hero-row p {
    font-family: 'Times New Roman', serif;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 3. THE 3-COLUMN LAYOUT */
.clay-city-three-col {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 25px !important;
    max-width: 1300px;
    width: 95%;
    margin: 40px auto !important;
    align-items: stretch !important;
}

/* 4. THE NEWSPAPER CARDS (The Flare) */
.clay-city-card {
    flex: 1 !important;
    width: 31% !important;
    display: flex !important;
    flex-direction: column !important;
    background-color: #fffdf6 !important; /* Aged Paper Tint */
    border: 2px solid #222 !important;
    padding: 30px;
    box-shadow: 10px 10px 0px #222 !important; /* Bold Shadow */
}

.clay-city-card h3 {
    font-family: "Times New Roman", serif;
    font-weight: 900 !important;
    text-transform: uppercase;
    text-align: center;
    border-top: 5px solid #222;
    border-bottom: 3px solid #222;
    padding: 10px 0;
    margin-bottom: 20px;
}

.clay-city-card img {
    width: 100%;
    height: 200px !important;
    object-fit: cover !important;
    filter: grayscale(20%) contrast(110%) sepia(10%); /* Vintage Filter */
    border: 1px solid #222;
    padding: 5px;
    background: #fff;
    margin-bottom: 15px;
}

.clay-city-card p, .clay-city-card strong {
    font-family: "Times New Roman", serif;
    line-height: 1.6;
    color: #222;
}

/* 5. MOBILE RESPONSIVENESS */
@media (max-width: 980px) {
    .clay-city-three-col {
        flex-direction: column !important;
        align-items: center !important;
    }
    .clay-city-card {
        width: 100% !important;
        margin-bottom: 30px;
    }
}
