/* =========================
   ENTRY META STYLING
   ========================= */
.entry-meta {
    margin-top: 4px;
    font-size: 11px;
    color: #7a7575;
}

/* =========================
   CAPTION STYLING
   ========================= */
.wp-caption .wp-caption-text {
    font-size: 13px;
    color: #a19e9e;
}

/* =========================
   FACEBOOK RESPONSIVE EMBED
   ========================= */
.facebook-responsive {
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
    height: 0;
}

.facebook-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* =========================
   BODY LAYOUT ADJUSTMENT
   ========================= */
body {
    margin-left: 0px;
    margin-right: 0px;
}

/* =========================
   SINGLE POST SPACING
   ========================= */
.single-post .featured-image {
    margin-top: 0px;
}

.single-post .entry-content {
    margin-top: -25px;
}

.single-post .entry-header {
    margin-bottom: -25px;
}

.single-post .entry-content > * {
    margin-bottom: 20px;
}

/* =========================
   READ MORE BUTTON
   ========================= */
.read-more {
    padding: 9px 9px;
    font-size: 16px;
    border-radius: 5px;
}

/* =========================
   FULL WIDTH BANNER FIX
   ========================= */
@media (max-width: 768px) {
    .your-banner-wrapper {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
}

/* =========================
   TYPOGRAPHY - HEADINGS
   ========================= */

/* Desktop */
.entry-title {
    font-size: 36px;
    line-height: 1.1;
}

/* Tablet */
@media (max-width: 1024px) {
    .entry-title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .entry-title {
        font-size: 30px;
    }
}

/* =========================
   ⭐ BODY TEXT (YOUR REQUESTED CONTROL)
   ========================= */

/* 🖥️ DESKTOP BODY TEXT */
.entry-content p {
    font-size: 26px;
    line-height: 1.6;
}

/* 📊 TABLET BODY TEXT */
@media (max-width: 1024px) {
    .entry-content p {
        font-size: 24px;
        line-height: 1.65;
    }
}

/* 📱 MOBILE BODY TEXT */
@media (max-width: 768px) {
    .entry-content p {
        font-size: 24px;
        line-height: 1.75;
    }
}

/* =========================
   HOME PAGE FEATURED TITLE
   ========================= */
.home .post:first-child .entry-title,
.home .entry:first-child .entry-title {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px) {
    .home .post:first-child .entry-title,
    .home .entry:first-child .entry-title {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .home .post:first-child .entry-title,
    .home .entry:first-child .entry-title {
        font-size: 30px;
    }
}

body.blog article:first-of-type,
body.home.blog article:first-of-type {
    background-color: #008080; /* your custom color */
    padding: 25px;
    border-radius: 12px;
}