.hero-inner-box {
    background-color: #333333; /* Dark charcoal gray to match the box in your image */
    padding: 15px 40px;        /* Generous padding for that wide rectangular look */
    display: inline-block;     /* Keeps the box dynamically wrapped to the text length */
    width: auto;               /* Ensures it only grows as wide as the text */
    border: none;
}

.hero-inner-box h1 {
    margin: 0;
    color: #FFFFFF;            /* Clean white text */
    font-size: 1.1em;          
    font-weight: normal;       /* Keeps the text clean and not overly bulky */
    letter-spacing: 6px;       /* Adds that elegant, wide spacing between letters seen in your image */
    text-transform: uppercase; /* Optional: remove this line if you don't want it in ALL CAPS */
}
/* Makes the previous and next post links below your content larger */
/* Makes the post navigation larger and splits them to the left and right sides */
.post-navigation {
    font-size: 1.3rem; 
    padding: 20px 0;
	  border-top: 1px solid #D3D3D3;
    display: flex;                  /* Activates the flexible layout grid */
    justify-content: space-between; /* Forces one item to the far left and one to the far right */
    align-items: center;            /* Perfectly aligns them vertically on the same line */
}

.post-navigation a {
    font-weight: bold; 
    text-decoration: none;          /* Keeps it looking clean */
}

/* Optional: Ensures it stays perfectly clean on small mobile screens */
@media (max-width: 768px) {
    .post-navigation {
        flex-direction: row;        /* Keeps them side-by-side even on mobile phones */
    }
}
/* Responsive Hero Styling */

/* DESKTOP: Large text and plenty of space */
.custom-page-hero h1 {
    font-size: 30px;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* MOBILE: Smaller text and adjusted padding */
@media (max-width: 768px) {
    .custom-page-hero h1 {
        font-size: 16px; /* Smaller font for phones */
    }
    .page-hero {
        padding-top: 130px !important; /* Move text down more on mobile */
        padding-bottom: 30px !important;
    }
}
/* Center title in your custom post element */
.hero-inner-box h1 {
    text-align: center;
}

/* Center standard page titles sitewide */
.entry-title, h1.entry-title {
    text-align: center;
}