.content-section{
    display: flex;
}
.left-pane{
    flex: 5;
    padding-left: 7%;
    /* margin-left: 5%; */
    /* border-right: 1px solid #e0e0e0; */
    text-align: left;
}
.post-title{
    margin-bottom: 0;
}
.post-title h2 {
    margin-bottom: 0;
    line-height: 1;
}
.post-meta{
    margin-top: 0;
    display: flex;
    /* justify-content: center; */
}
.post-meta {
    /* margin-top: 1%; */
    padding: 0 0;
    margin: 0 0;
    /* margin-left: 3%; */
}

.post-description > p{
    padding: 0 0;
    margin: 0 0;
}

img {
    width: 100%;
    height: auto;
}

.right-pane{
    flex: 2;
    /* padding-left: 5%; */
}

.author-section {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.author-introduction {
    margin-bottom: 2%;
}

.author-section img {
        margin-top: 0%;
        /* padding-top: 10%; */
        width: 40%; /* Define the width of the circle */
        aspect-ratio: 1 / 1; /* Ensures the image maintains a 1:1 aspect ratio */
        border-radius: 50%; /* Make it a circle */
        object-fit: cover; /* Ensures the image covers the entire circle area */
        overflow: hidden; /* Ensures any overflowing content is hidden */
    }

.author-name {
    margin-top: 2%;
    margin-bottom: 2%;
}

.author-description {
    margin-top: 2%;
}