
/* =========================
   BYLINE (RESTORED)
   ========================= */
.discover-byline {
    margin-top: 10px;
    font-size: 15px;
    color: #7a7575;
}

/* =========================
   ENTRY META (RESTORED)
   ========================= */
.blog .entry-meta,
.archive .entry-meta,
.home .entry-meta,
.search .entry-meta {
    font-size: 12px;
    color: #888;
    text-transform: none;
}

/* =========================
   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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================
   BODY RESET
   ========================= */
body {
    margin-left: 0;
    margin-right: 0;
}

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

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

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

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

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

/* =========================
   HERO BANNER WRAPPER
   ========================= */
.your-banner-wrapper {
    position: relative;
    width: 100%;
    z-index: 0;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .entry-content p {
        font-size: 24px;
        line-height: 1.65;
    }
}

@media (max-width: 768px) {
    .entry-content p {
        font-size: 24px;
        line-height: 1.75;
    }
}

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

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

/* =========================
   FEATURED HOME POST HIGHLIGHT
   ========================= */
body.blog article:first-of-type,
body.home.blog article:first-of-type {
    background-color: #008080;
    padding: 25px;
    border-radius: 12px;
}

/* =========================
   AUTHOR BOX
   ========================= */
.author-card {
    border: 2px solid #bdbdbd;
    padding: 18px 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    max-width: 768px;
    margin-bottom: 30px;
}

.author-card .author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
}

.author-card .author-name::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 10px;
    background-color: #d6d6d6;
}

.author-card .author-role {
    font-size: 17px;
    font-weight: 400;
    color: #777;
    margin-bottom: 8px;
}

.author-card .author-description {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    margin-top: 10px;
}

/* OUTER SECTION (creates “site feeling”) */
.hero-section {
    width: 100%;
    background: #abdbd7; /* subtle separation from page */
    padding: 12px 0;     /* creates breathing space */
}

/* INNER CONTAINER (the “card frame”) */
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

/* IMAGE STYLING */
.hero-inner img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 12px;

    /* soft depth instead of border */
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}