#smooth-content {
    padding-top: calc(var(--header-height) + 20px);
}

/* Blog Page Styles */

.blog {
    position: relative;
    width: 100dvw;
    flex-shrink: 0;
}

.heading {
    font-size: 8vw;
    font-weight: 800;
    font-family: var(--f-focus);
}

.stripe {
    border-top: 1px solid var(--bg2);
    border-bottom: 1px solid var(--bg2);
    width: max-content;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    margin:  80px 0;
}

.stripe-child {
    display: inline-flex;
    gap: 3vw;
    padding: 20px 0;
    white-space: nowrap;
    font-size: 5vw;
}

@media (max-width: 1060px) {
    .stripe {
        margin:  60px 0;
    }
}

@media (max-width: 900px) {
    .stripe {
        margin:  40px 0;
    }
    .stripe-child {
        padding: 15px 0;
    }
}

@media (max-width: 710px) {
    .stripe {
        margin:  30px 0;
    }
    .stripe-child {
        padding: 10px 0;
    }
}

.stripe span {
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 20px;
}

.stripe span:nth-of-type(even) {
    -webkit-text-stroke: 1px var(--tx);
    color: transparent;
}

/* Blog Link Styling */
.blog-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: inherit;
    text-decoration: none;
}

.blog-link:hover .artist-name {
    color: var(--cf);
}

/* Blog List Layout - Instagram Style Vertical Cards */
.artist-ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.artist-li {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-li:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cf);
    box-shadow: 0 16px 40px rgba(255, 0, 255, 0.15);
}

/* Big Cover Image */
.artist-li img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    background: var(--bg);
}

/* Blog Content */
.artist-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    font-family: var(--f-focus);
}

.artist-date {
    /* font-size: 14px; */
    color: var(--tx2);
    font-weight: 500;
    order: 2;
}

.artist-name {
    /* font-family: var(--f-focus); */
    font-weight: 800;
    font-size: 24px;
    line-height: 1.3;
    color: var(--tx);
    margin: 0;
    order: 1;
    transition: color 0.3s ease;
}

.artist-li:hover .artist-name {
    color: var(--cf);
}

.artist-excerpt {
    /* font-size: 16px; */
    line-height: 1.5;
    color: var(--tx2);
    order: 3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Image Placeholder for blogs without cover images */
.blog-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg);
    position: relative;
    /* background: repeating-linear-gradient(
        45deg,
        var(--bg),
        var(--bg) 10px,
        var(--bg2) 10px,
        var(--bg2) 20px
    ); */
    /* background-image: url(assets/nyc_raves-logo.svg);
    background-size: 20px 20px;
    background-position: center;
    background-repeat: repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .2; */
}

.blog-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

/* Pinned Blog Indicator */
.artist-li.pinned::before {
    content: "PINNED";
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--cf);
    color: var(--bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    z-index: 2;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artist-ul {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px 0;
    }
    
    .artist-li img {
        height: 300px;
    }
    
    .blog-image-placeholder {
        height: 300px;
    }
    
    .artist-content {
        padding: 20px;
    }
    
    .artist-name {
        font-size: 20px;
    }
    
    .artist-excerpt {
        /* font-size: 14px; */
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .artist-li img {
        height: 250px;
    }
    
    .blog-image-placeholder {
        height: 250px;
    }
    
    .artist-content {
        padding: 16px;
        gap: 8px;
    }
    
    .artist-name {
        font-size: 18px;
    }
    
    /* .artist-excerpt {
        font-size: 14px;
    }
    
    .artist-date {
        font-size: 12px;
    } */
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 40px auto;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--tx);
    border: 1px solid var(--bg2);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--f-focus);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

/* Responsive styles for load more button */
@media (max-width: 768px) {
    .load-more-btn {
        margin: 30px auto;
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .load-more-btn {
        margin: 20px auto;
        padding: 12px 24px;
        font-size: 13px;
        width: calc(100% - 40px);
        max-width: 300px;
    }
}