/* Main post container styling */
.post-wrapper {
	max-width: 1000px;
    margin: 10px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Post content container styling */
.post-content {
    display: flex;
    flex-direction: column;
}

/* Post header styling */
.post-header {
    margin-bottom: 20px;
}

.post-title {
    font-size: 2rem;
    color: #333;
    margin: 0 0 10px;
}

/* Author info styling */
.post-author-info {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.post-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-author-name {
    font-weight: bold;
}

/* Post categories styling */

/* Post thumbnail styling */
.post-thumbnail-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.post-thumbnail {
    width: 50%; 
    border-radius: 8px;
    object-fit: cover;
}

/* Post content body styling */
.post-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.reviewcard-rating-wrapper {
    text-align: center; 
}

.review-rating-title {
    font-size: calc(1.325rem + .9vw);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px; 
}

.reviewcard-rating-container {
    display: inline-flex; 
    align-items: center; 
}

.reviewcard-rating-container i {
    font-size: 20px;
}

.review-rating-number {
    font-size: 25px;
    margin-left: 10px; 
}

.checked{
    color: var(--accent-color);
}

/* Media query for responsiveness */
@media (max-width: 600px) {
    .post-wrapper {
        padding: 15px;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-author-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-author-avatar {
        margin-bottom: 10px;
    }

    .post-thumbnail {
        width: 80%; 
    }
}
