/* ==========================
   DETAILS PAGE
========================== */
.details-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border-top: solid 1px #000;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    overflow: hidden;
}

/* Category */
.details-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,#23002C,#5A006F);
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 25px;
}
.home-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #5A006F;
    padding: 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.home-icon {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 10%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.details-category:hover {
    background: linear-gradient(135deg,#5A006F,#23002C);
    animation: gradientShift 3s ease infinite;
    color: #fff;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.title-box {
    margin-bottom: 25px;
}
.details-title {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 800;
    color: #32063D;
    letter-spacing: -.5px;
}
.details-subtitle {
    display: block;
    font-size: 22px;
    color: #3b1545;
    margin-top: 8px;
}

/* Meta Area */
.details-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    padding: 8px;
    background: #32063D1A;
    border-radius: 10px;
}

.details-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-author img {
    width: 32px;
    height: 100%;
    border-radius: 6px;
    /* object-fit: ; */
}

.details-author-info {
    font-size: 14px;
    color: #4b5563;
}

.details-author-info strong {
    color: #111827;
    font-weight: 600;
}

/* Social Share */
.details-share a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    transition: all .3s ease;
}

.details-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.details-share {
    display: flex;
    align-items: center;
    gap: 6px;
}

.details-share a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.details-share a:hover {
    transform: translateY(-2px);
}

.details-facebook {
    background: #1877F2;
}

.details-linkedin {
    background: #0077B5;
}

.details-twitter {
    background: #1DA1F2;
}

.details-whatsapp {
    background: #25D366;
}

.details-pinterest {
    background: #E60023;
}

.details-print {
    background: #111827;
}

/* Featured Image */
.details-image {
    margin-bottom: 8px;
}

.details-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Caption */
.details-caption {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Content */
.details-content {
    color: #1f2937;
    font-size: 18px;
    line-height: 1.5;
}

.details-content p {
    margin-bottom: 15px;
}

.details-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.details-content h2,
.details-content h3,
.details-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111827;
    font-weight: 700;
}

/* Quote */
.details-content blockquote {
    border-left: 4px solid #23002C;
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 25px 0;
    font-style: italic;
}

/* Mobile */
@media (max-width: 578px) {
    .details-wrapper {
        padding: 10px;
    }
    .details-title {
        font-size: 26px;
        line-height: 1.4;
        font-weight: 700;
        letter-spacing: normal;
    }
    .details-subtitle {
        font-size: 18px;
    }
    .details-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (min-width: 991px) {
    .desktop-sticky {
        position: sticky;
        top: 60px;
    }
}