/* news.css - v1.2 */
/* Complete CSS for News Page - Following Spotlight Design System */

/* Image Banner */
.image-banner {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
}

.banner-overlay h1 {
    font-weight: 300;
    letter-spacing: 8px;
    margin-top: 70px;
    text-transform: uppercase;
    border: 2px solid #ffffff70;
    padding: 1rem 2rem;
    font-size: 25px;
    color: #fff;
}

/* Page Container */
.shop-page {
    padding: 60px 0;
    background: #faf9f8;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Filter Bar */
.shop-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0dfdd;
}

.filter-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.filter-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b6a68;
    cursor: default;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.filter-item.active {
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: -17px;
}

.filter-right span {
    font-size: 0.9rem;
    color: #6b6a68;
}

/* News Grid - Same as artists/spotlight */
.artworks-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px 32px;
}

/* News Card */
.artwork-card {
    background: white;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.artwork-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}

.artwork-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image Wrapper */
.artwork-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f0efed;
}

.artwork-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artwork-card:hover .artwork-image-wrapper img {
    transform: scale(1.03);
}

/* Content Area */
.artwork-content {
    padding: 24px 20px 28px;
}

/* News Title */
.artwork-title {
   font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: #1f1f1f;
}

/* Date */
.artwork-artist {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 14px;
    font-weight: 450;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Description / Bio */
.artwork-bio {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.whatsapp-btn,
.buy-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1a1a1a;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.4px;
    transition: all 0.25s;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    flex: 1;
    min-width: 100px;color: #fff !important;
}

.whatsapp-btn:hover,
.buy-now-btn:hover {
    background-color: white;
    color: #000 !important;
    border-color: #1a1a1a;
}

.buy-now-btn {
    background-color: transparent;
    color: #000 !important;
    border-color: #ddd;text-align: center;
}

.buy-now-btn:hover {
    background-color: #1a1a1a;
    color: #fff !important;
    border-color: #1a1a1a;
}

/* No news fallback */
.artworks-shop-grid > p {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f5f3f0;
    border-radius: 28px;
    color: #5e5b58;
    font-size: 1rem;
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS - MATCHING SPOTLIGHT */
/* ============================================ */

/* 1400px+ */
@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

/* 1200px - 1399px */
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
    .banner-overlay h1 {
        padding: 0.8rem 1.5rem;
        font-size: 22px;
        letter-spacing: 6px;margin-top: 70px;
    }
    .image-banner {
        height: 350px;
    }
    .shop-page {
        padding: 40px 0;
    }
    .whatsapp-btn,
    .buy-now-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 100px;
    }
    .artworks-shop-grid {
        gap: 30px;
    }
}

/* 992px - 1199px */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
    .banner-overlay h1 {
        padding: 0.7rem 1.3rem;
        font-size: 20px;
        letter-spacing: 6px;margin-top: 70px;
    }
    .image-banner {
        height: 320px;
    }
    .shop-page {
        padding: 35px 0;
    }
    .whatsapp-btn,
    .buy-now-btn {
        padding: 8px 14px;
        font-size: 12px;
        min-width: 90px;
    }
    .artworks-shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 28px;
    }
    .artwork-title {
        font-size: 1.3rem;
    }
}

/* 768px - 991px */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .banner-overlay h1 {
        padding: 0.6rem 1.2rem;
        font-size: 18px;
        letter-spacing: 5px;margin-top: 70px;
    }
    .image-banner {
        height: 280px;
    }
    .shop-page {
        padding: 30px 0;
    }
    .artworks-shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    .artwork-title {
        font-size: 1.2rem;
    }
    .button-group {
        flex-direction: column;
    }
    .whatsapp-btn,
    .buy-now-btn {
        width: 100%;
    }
}

/* 576px - 767px */
@media screen and (min-width: 576px) and (max-width: 767.98px) {
    .banner-overlay h1 {
        padding: 0.5rem 1rem;
        font-size: 14px;
        letter-spacing: 4px;margin-top: 70px;
    }
    .image-banner {
        height: 250px;
    }
    .shop-page {
        padding: 25px 0;
    }
    .container {
        padding: 0 16px;
    }
    .artworks-shop-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .artworks-shop-grid > * {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
    .artwork-bio {
        font-size: 12px;
    }
    .whatsapp-btn,
    .buy-now-btn {
        padding: 8px 12px;
        font-size: 11px;
        min-width: 80px;
    }
    .artwork-title {
        font-size: 1.1rem;
    }
    .shop-filter-bar {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    .filter-left {
        gap: 16px;
    }
    .filter-item {
        font-size: 0.85rem;
    }
}

/* 381px - 575px */
@media screen and (min-width: 381px) and (max-width: 575.98px) {
    .banner-overlay h1 {
        padding: 0.4rem 0.8rem;
        font-size: 12px;
        letter-spacing: 3px;
        border-width: 1.5px;margin-top: 70px;
    }
    .image-banner {
        height: 220px;
    }
    .shop-page {
        padding: 20px 0;
    }
    .container {
        padding: 0 14px;
    }
    .artworks-shop-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .artworks-shop-grid > * {
        flex: 0 0 90%;
        scroll-snap-align: start;
    }
    .artwork-bio {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    .whatsapp-btn,
    .buy-now-btn {
        padding: 8px 10px;
        font-size: 10px;
        min-width: 70px;
    }
    .artwork-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .artwork-artist {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    .artwork-content {
        padding: 16px 14px 20px;
    }
    .artwork-image-wrapper {
        height: 250px;
    }
    .button-group {
        gap: 8px;
    }
    .filter-item {
        font-size: 0.8rem;
    }
    .filter-left {
        gap: 12px;
    }
}

/* 320px - 380px */
@media screen and (min-width: 320px) and (max-width: 380.98px) {
    .banner-overlay h1 {
        padding: 0.35rem 0.7rem;
        font-size: 11px;
        letter-spacing: 2px;
        border-width: 1.5px;margin-top: 70px;
    }
    .image-banner {
        height: 200px;
    }
    .shop-page {
        padding: 20px 0;
    }
    .container {
        padding: 0 12px;
    }
    .artworks-shop-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .artworks-shop-grid > * {
        flex: 0 0 92%;
        scroll-snap-align: start;
    }
    .artwork-bio {
        font-size: 10px;
        -webkit-line-clamp: 2;
    }
    .whatsapp-btn,
    .buy-now-btn {
        padding: 6px 8px;
        font-size: 9px;
        min-width: 60px;
        gap: 4px;
    }
    .artwork-title {
        font-size: 0.9rem;
    }
    .artwork-artist {
        font-size: 0.65rem;
    }
    .artwork-content {
        padding: 14px 12px 18px;
    }
    .artwork-image-wrapper {
        height: 230px;
    }
    .filter-item {
        font-size: 0.75rem;
    }
    .filter-left {
        gap: 10px;
    }
    .shop-filter-bar {
        margin-bottom: 25px;
    }
}

/* Fix for horizontal scroll on mobile */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
    .artworks-shop-grid {
        scrollbar-width: thin;
    }
    .artworks-shop-grid::-webkit-scrollbar {
        height: 4px;
    }
    .artworks-shop-grid::-webkit-scrollbar-track {
        background: #e0dfdd;
        border-radius: 4px;
    }
    .artworks-shop-grid::-webkit-scrollbar-thumb {
        background: #1a1a1a;
        border-radius: 4px;
    }
}
.new-footer {
  margin-top: 0rem;
}