.post-details-section {
    background: #fff;
}

.post-details-wrapper {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.post-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 16px;
    color: #777;
}

.post-meta i {
    margin-right: 6px;
    color: #d9232d;
}

/* Slider */
.post-gallery-slider .gallery-item {
    padding: 10px;
}

.post-gallery-slider img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.4s;
}

.post-gallery-slider img:hover {
    transform: scale(1.03);
}

/* Slick arrows */
/* Custom unique arrows */
.post-gallery-slider .post-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 5;
    transition: 0.3s;
}

.post-gallery-slider .post-prev {
    left: -25px;
}

.post-gallery-slider .post-next {
    right: -25px;
}

.post-gallery-slider .post-arrow i {
    color: #d9232d;
    font-size: 18px;
}

.post-gallery-slider .post-arrow:hover {
    background: #d9232d;
}

.post-gallery-slider .post-arrow:hover i {
    color: #fff;
}

/* Content */
.post-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

/* Back button */
.theme-back-btn {
    display: inline-block;
    background: #d9232d;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.theme-back-btn:hover {
    background: #111;
    color: #fff;
}

/* Mobile */
@media (max-width: 767px) {
    .post-details-wrapper {
        padding: 20px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-gallery-slider img {
        height: 220px;
    }

    .post-content p {
        font-size: 16px;
    }
}