/* ==========================================
   TODAY IN THE VILLAGE GREEN
========================================== */

.village-feature {
    max-width: 900px;
    margin: 40px auto 70px;
    padding: 30px;
    background: rgba(255,255,255,.92);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    text-align: center;
}

.village-feature-header {
    font-size: 2rem;
    font-weight: 700;
    color: #7b0f16;
    margin-bottom: 30px;
    border-bottom: 2px solid #c9a21a;
    padding-bottom: 12px;
}

.village-feature-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.village-feature-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------- Image ---------- */

.village-feature-image {
    margin-bottom: 30px;
}

.village-feature-image img {
    display: block;
    width: 100%;
    max-width: 350px;      /* Adjust to taste */
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* ---------- Content ---------- */

.village-feature-content {
    max-width: 700px;
    margin: 0 auto;
}

.village-feature-content h2 {
    font-size: 2rem;
    color: #123c78;
    margin: 0 0 20px;
}

.village-feature-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* ---------- Read More ---------- */

.village-read-more {
    display: inline-block;
    padding: 12px 28px;
    background: #8b0000;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: .25s;
}

.village-feature-link:hover .village-read-more {
    background: #b22222;
}

.village-feature-link:hover img {
    transform: scale(1.02);
}

.village-feature-image img {
    transition: transform .25s ease;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

    .village-feature {
        margin: 20px;
        padding: 20px;
    }

    .village-feature-header {
        font-size: 1.6rem;
    }

    .village-feature-content h2 {
        font-size: 1.6rem;
    }

    .village-feature-content p {
        font-size: 1rem;
    }

}

/* ==========================================
   HOLIDAY ARTICLE
========================================== */

/* Page Banner */

.holiday-banner {
    text-align: center;
    margin: 0 0 35px;
    font-size: 2rem;
    color: #123c78;
}

/* Holiday Article */

.holiday-article {
    max-width: 980px;
    margin: 40px auto 60px;
    padding: 40px 50px;
    background: rgba(255,255,255,.93);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.30);
    line-height: 1.8;
    color: #222;
}

/* ==========================================
   HOLIDAY IMAGE
========================================== */

.holiday-image {
    text-align: center;
    margin: 0 0 30px;
}

.holiday-image img {
    display: inline-block;
    width: 250px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 18px rgba(0,0,0,.25);
}


/* ==========================================
   HOLIDAY TITLE
========================================== */

.titleOne {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    color: #8b0000;
    line-height: 1.2;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid #b22222;
}


/* ==========================================
   HOLIDAY TEASER
========================================== */

.teaser {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin: 0 0 40px;
    line-height: 1.6;
}

/* Section Headings */

.titleTwo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #123c78;
    margin: 45px 0 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d8d8d8;
}

/* Paragraphs */

.holiday-article p {
    font-size: 1.08rem;
    text-align: justify;
    margin-bottom: 18px;
}

/* Callout */

.holiday-article p strong,
.holiday-article p[style] {
    display: block;
    margin: 28px 0;
    padding: 18px 22px;
    background: #fff8dc;
    border-left: 6px solid #c9a21a;
    border-radius: 6px;
    font-style: italic;
}

/* Remove spacer divs */

.empty {
    display: none;
}

/* Clear floated image */

.titleOne::after {
    content: "";
    display: block;
    clear: both;
}

/* Responsive */

@media (max-width: 768px) {

    .holiday-article {
        margin: 20px;
        padding: 25px;
    }

    .titleOne {
        font-size: 2rem;
    }

    .titleOne img {
        float: none;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 25px;
    }

    .titleTwo {
        font-size: 1.4rem;
    }

}