/* File: single-post.css */

/* Featured image */
.sm-featured-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    display: block;
}

.sm-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Meta panel */
.sm-meta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
}





/* Responsive */
@media (max-width: 767px) {
    .sm-meta-box {
        padding: 14px 16px;
        gap: 10px 14px;
        font-size: 14px;
    }

}