/* posts css */
/* Page Background */
.single-dark {
    padding: 90px 20px;
    color: #cbd5e1;
}

/* Container */
.container-main {
    width: 1200px;
    margin: auto;
}

/* Image Card */
.content h2 .post-image img {
    margin: auto;
    border-radius: 16px;
    margin-bottom: 25px;
    display: block;
    width: 100%
}


/* Title */
.post-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    background: linear-gradient(180deg, #FCFCFF, rgba(252, 252, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.post-date {
    color: #FF744D;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Content */
.post-content {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
}

/* Paragraph spacing */
.post-content p {
    margin-bottom: 18px;
    font-size: 20px;
}

/* Links */
.post-content a {
    color: #38bdf8;
    text-decoration: underline;
}

/* Optional: bullet list */
.post-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 50px;
    text-align: center;

}

.post-dark {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 70px;
    margin-top: 80px;
}

.breadcrumb a {

    text-decoration: none;
    opacity: 0.6;
    color: #A9A8AE;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: #A9A8AE;
}

.breadcrumb .current {
    color: #A9A8AE;
    text-decoration: none;
    opacity: 0.9;
}

.related-posts {
    margin-top: 60px;
    margin-bottom: 60px;
}

.related-title {
    background: linear-gradient(180deg, #FCFCFF, rgba(252, 252, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Wrapper controls overflow */
.related-wrapper {
    overflow: hidden;
}

/* Track = horizontal scroll */
.related-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 50s linear infinite;
}

/* Card */
.related-card {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.related-track:hover {
    animation-play-state: paused;
}

/* Image */
.card-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

p.card-desc {
    font-size: 14px;
}

.card-date {
    font-size: 12px;
    color: #FF744D;
}

.card-content h3 {
    color: #FFF3F0;
    font-size: 20px;
    margin: 10px 0;
    opacity: 0.8;
    font-weight: 300;
}

.read-more {
    color: #FF744D;
    font-size: 12px;
    text-decoration: none;
}

/* 🔥 Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .container-main {
        width: unset !important;
    }

    .single-dark {
        padding-bottom: 0px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-date {
        font-size: 18px;
    }

    .post-content p {
        font-size: 18px;
    }

    .post-image img {
        height: auto;
    }

    .post-dark {
        padding: 10px;
    }
}

/* posts css ends */