/* General Styles for Post Content */
.post-content-area {
    font-size: 18px;
    font-family: "Roboto Slab", serif;
    color: #4a4a4a;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Heading Styles */
.post-content-area h1,
.post-content-area h2,
.post-content-area h3 {
    font-weight: bold;
    color: #1e2245;
    margin-bottom: 20px;
}

/* Paragraph Styling */
.post-content-area p {
    margin-bottom: 15px;
    color: #4a4a4a;
    font-size: 18px;
}

/* Styling for Links */
.post-content-area a {
    color: #007bff;
    text-decoration: none;
}

.post-content-area a:hover {
    text-decoration: underline;
}

/* Image Styling */
.post-content-area img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    /* Make sure images are responsive */
}

/* Styling for List Items */
.post-content-area ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Increase the space between the title and content for clarity */
.post-content-area h1 {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Specific Mobile View Fix */
@media (max-width: 768px) {
    .post-content-area h1 {
        font-size: 24px;
    }

    .post-content-area img {
        width: 100%;
        height: auto;
    }
}
