

/* General Styles */
.single-post-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.single-post-content {
    padding: 50px 0;
    width: 1200px;
    margin: auto;
}

/* Feature Image */
.feature-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

/* Post Meta */
.post-meta {
  font-size: 18px;
  color: #1a2248;
  font-weight: bold;
}

/* Post Title */
.post-title {
    font-weight: bold;
    margin: 2px 0;
    padding-bottom: 20px;
  font-size: 41px;
}

/* Post Excerpt */
.post-excerpt {
  font-size: 16px;
  color: #1a2248;
  margin: 10px 0;
}
/* Post Body */
.post-body {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6;
    color: #141c46;
    letter-spacing: 0.05rem;
}

/* Signature Image */
.signature-image {
    display: block;
    margin: 20px auto;
    padding-bottom: 120px;
}

/* Row and Column Layout */
.row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px; /* Adjust spacing as needed */
}

.column-left,
.column-right {
    width: 49%; /* Adjust width for more balanced columns */
    display: flex;
    flex-direction: column; /* Ensure content inside columns stacks vertically */
}

.column-left {
    margin-right: 2%; /* Add space between columns */
}

/* Thumbnail */
.thumbnail img {
    width: 100%; /* Ensure the image fills the parent container */
    height: 300px; /* Set a fixed height */
    object-fit: cover; /* Maintain aspect ratio and fill the space without distortion */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .row {
        flex-direction: column; /* Stack columns on small screens */
    }

    .column-left,
    .column-right {
        width: 100%; /* Full width for smaller screens */
        margin-right: 0;
        margin-bottom: 20px; /* Add spacing between stacked columns */
    }

    .thumbnail img {
        height: 200px; /* Reduce height for smaller screens */
    }
    
    .single-post-content {
        width: 300px;
    }
}
