body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        /* background: linear-gradient(
    180deg,
    #e9dccb 0%,
    #dcc7ad 50%,
    #d3bfa6 100%
); */
background: white;
}
.artwise-xd-01-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
    font-family: 'poppins' , sans-serif;
    margin-top: 70px;


}

.artwise-xd-title {
    font-size: 5rem;
    font-weight: 100;
    margin: 0;
    margin-bottom: 35px;
    line-height: 1.1;

}

.artwise-xd-breadcrumb {
    margin-top: 20px;
    font-size: 1.4rem;
    color: #333333;
}



.artwise-xd-divider {
    border: 0;
    border-top: 6px solid #000000;
    margin: 20px 0 30px 0;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .artwise-xd-title { font-size: 3rem; }
    .artwise-xd-slider-track { height: 200px; }
}
@media (max-width: 425px) {
.artwise-xd-breadcrumb {
    font-size: 1rem;
}
}
:root {
    --primary-font: 'Inter', sans-serif;
}

.artwise-news-xt-container {
    max-width: 1200px;
    margin: 50px auto;
    font-family: var(--primary-font);
    text-align: center;
}

/* Navbar Style */
.artwise-news-xt-nav {
    display: flex;
    justify-content: space-around;
    gap: 25px;
    margin-bottom: 50px;
}

.artwise-news-xt-nav-item {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.artwise-news-xt-nav-item.active {
    color: #000;
}

.artwise-news-xt-nav-item.active::after {
    content: '●';
    display: block;
    font-size: 16px;
    margin-top: -2px;
}

/* Grid Logic: 3 Cards in a Row */
.artwise-news-xt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
}

/* Card Styling */
.artwise-news-xt-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    padding: 10px;
}

.artwise-news-xt-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.artwise-news-xt-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.artwise-news-xt-date-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #000;
    color: #fff;
    padding: 8px 10px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}

/* Hover Content (Hidden by default) */
.artwise-news-xt-hover-content {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s ease;
    padding-top: 15px;
    text-align: left;
}

.artwise-news-xt-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.artwise-news-xt-card:hover .artwise-news-xt-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.artwise-news-xt-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.artwise-news-xt-source {
    font-size: 18px;
    color: #555;
    margin: 0;
}

.artwise-news-xt-read-btn {
    margin-top: 15px;
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    background: #f0f0f0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Footer Arrows */
.artwise-news-xt-arrows {
    margin-top: 40px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Responsive Breakpoints */
@media (max-width: 786px) {
    .artwise-news-xt-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards on tablet */
    }
}

@media (max-width: 425px) {
    .artwise-news-xt-grid {
        grid-template-columns: 1fr; /* 1 card on mobile */
    }
    .artwise-news-xt-nav {
        gap: 12px;
        flex-wrap: wrap;
    }
}

/* Container ko slide area banane ke liye */
.artwise-news-xt-container {
    overflow: hidden; /* Bahar ke cards hide rahenge */
    margin: 0 auto;
    position: relative;
}

.artwise-news-xt-grid {
    display: flex; /* Grid ki jagah Flex use karein slider ke liye */
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    padding: 20px 0;
}

.artwise-news-xt-card {
    flex: 0 0 calc(33.33% - 14px); /* 3 cards desktop par */
    box-sizing: border-box;
}

@media (max-width: 425px) {
    .artwise-news-xt-card {
        flex: 0 0 100%; /* 1 card mobile par */
    }
}

.artwise-news-xt-arrows span {
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transition: 0.3s;
}

.artwise-news-xt-arrows span:hover {
    color: #000;
    transform: scale(1.2);
}