/* ==============================  General Typography  ============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #262626;
}

p,
li {
    color: #6c757d;
    font-size: 16px;
}

p,
ul {
    margin-bottom: 30px;
}

/* ==============================  Breadcrumb Styles  ============================== */
.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
    color: #262626;
    transition: color 0.3s ease-in-out;
}

.breadcrumb a:hover {
    color: #FD760D;
}

.breadcrumb i {
    margin-right: 5px;
}

/* ============================== Featured Image ============================== */
.featured-image {
    width: 100%;
    max-height: 462px;
    object-fit: cover;
    border-radius: 20px;
}

/* ==============================  post-meta Information  ============================== */
.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    margin-top: 10px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta img {
    width: 16px;
    height: 16px;
}

/* Blog Slider */

.blog-section {
    position: relative;
    margin: auto;
}

/* Custom Navigation Arrows (Top Left) */
.blog-navigation {
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.blog-navigation .custom-arrow {
    color: #262626;
    width: 40px;
    height: 40px;
    border: 1px solid #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    pointer-events: all;
}

.blog-navigation .custom-arrow:hover {
    background: #262626;
    color: #fff;
    transition: 0.3s ease;
}

.blogSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.blogSwiper .blog-slide {
    background: none;
    text-align: left;
    border: none;
}

.blogSwiper .blog-slide img {
    width: 100%;
    border-radius: 10px;
    height: 280px;
    object-fit: cover;
}

.blogSwiper h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #262626;
    font-weight: 600;
}

.blogSwiper p {
    font-size: 16px;
    color: #262626;
}

.blogSwiper .read-more {
    color: #262626;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
    transition: 0.3s ease;
}

.blog-navigation .custom-arrow {
    transition: opacity 0.3s ease;
}

.blog-navigation .custom-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media(max-width: 768px){
    .blogSwiper .blog-slide img {
        height: 240px;
    }
}
