/* For the full-width hero section */
.full-width-hero {
    display: flex;
    width: 100%;
    background-color: #f8f9fa;
}

.full-width-hero .hero-content {
    flex: 1;
    max-width: 50%;
}

.full-width-hero .hero-image {
    flex: 1;
    max-width: 50%;
    height: 100%;
}

.full-width-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    margin: 0;
    padding: 0;
}
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa; /* Update to match your website colors */
    width: 100%;
    box-sizing: border-box;
}
.post-header .text-content {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the content vertically */
    padding-left: 50px; /* Adjust padding to match the example */
}
.post-header .image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center; /* Center the image vertically */
    padding-right: 50px; /* Adjust padding to match the example */
}
.post-header .image-content img {
    width: 80%; /* Adjust width to match the example */
    height: auto; /* Maintain aspect ratio */
    max-height: 400px; /* Increased height for images */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 8px;
}
.post-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Update to match your website colors */
}
.post-meta {
    font-size: 1rem;
    color: #666; /* Update to match your website colors */
    margin-bottom: 10px;
}
.post-author {
    display: flex;
    align-items: center;
}
.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.post-author .author-info {
    font-size: 0.9rem;
    color: #333; /* Update to match your website colors */
}
.post-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.post-content img {
    max-width: 100%;
    height: auto;
}
.hero-content {
    flex: 1;
    padding: 90px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}