/* Custom fixes for the Affal theme */

/* Preloader styles */
.preloader {
    background: #fff;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.preloader .item-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Override any overflow: hidden on the body or html elements */
html, body {
    overflow: visible !important;
    height: auto !important;
}

/* Fix for the .fix class that has overflow: hidden */
.fix {
    overflow: visible !important;
}

/* Ensure main content area is scrollable */
.inner-blog {
    overflow: visible !important;
}

/* Make sure single post content is visible and scrollable */
.blog-details-wrap {
    overflow: visible !important;
}

/* Featured image styling for single blog posts */
.blog-featured-image {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-featured-image img:hover {
    transform: scale(1.02);
}
/*# sourceMappingURL=custom-fixes.css.map */