/* About Page Styles */

/* Header Image */
.about-header-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 34px;
}

.about-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main Content */
.about-content {
    color: #333;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 40px;
    letter-spacing: 0.02em;
    margin-bottom: 17px;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.about-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 17px;
}

.about-article {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.about-article p {
    margin-bottom: 10px;
}

/* Share Section */
.about-share {
    /* border-top: 1px solid #e0e0e0;
    padding-top: 34px; */
    margin-top: 34px;
    padding-left: 17px;
    padding-right: 17px;
}

.share-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.share-button {
    width: 25px;
    color: var(--text-white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.125rem;
    flex-shrink: 0;
    padding: 0;
}

.share-button:hover {
    background-color: #000;
}

.share-button:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Sidebar */
.about-sidebar {
    background-color: #231e20;
    color: var(--text-white);
    padding: 12px 17px 17px 17px;
    border-radius: 0;
    height: fit-content;
    margin-bottom: 17px;
}

.sidebar-section {
    margin-bottom: 34px;
}

.sidebar-section:last-of-type {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 20px;
    font-weight: bold !important;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 17px 0;
    border-bottom: 1px solid var(--text-white);
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.sidebar-items {
    margin-top: 0;
}

.sidebar-item {
    margin-bottom: 20px;
    gap: 17px;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-item-image {
    width: 120px;
    height: 90px;
    overflow: hidden;
    border-radius: 0;
    flex-shrink: 0;
}

.sidebar-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-item-image:hover img {
    transform: scale(1.05);
}

.sidebar-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-item-title {
    font-size: 14px;
    color: var(--text-white);
    margin: 0 0 4px 0;
    line-height: 1.4;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
    text-transform: uppercase;
}

.sidebar-item-link {
    color: var(--color-blue);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.sidebar-item-link:hover {
    color: var(--color-blue);
    text-decoration: none;
}

/* Subscribe Bar */
.sidebar-subscribe {
    background-color: #dc3545;
    border-radius: 0;
}

.subscribe-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-subscribe i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.subscribe-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0;
    line-height: 1.2;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.subscribe-count {
    font-size: 0.75rem;
    color: var(--text-white);
    opacity: 1;
    margin: 0;
    line-height: 1.3;
    margin-top: 2px;
    font-style: italic;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.subscribe-btn {
    background-color: var(--text-white);
    color: #000;
    border: 1px solid #000;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.subscribe-btn:hover {
    background-color: #f0f0f0;
    color: #000;
    border-color: #000;
}

.about-section {
    padding: 17px;
    background-color: var(--text-white);
}

/* Responsive Design */

/* Desktop */
@media (max-width: 1199.98px) {
    .about-article p {
        font-size: 14px;
    }


}


/* Mobile */
@media (max-width: 991.98px) {

    .about-header-image {
        height: 300px;
        margin-bottom: 24px;
    }

    .about-title {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .about-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-article {
        font-size: 0.9375rem;
    }

    .about-share {
        padding-top: 24px;
        margin-top: 24px;
        padding-left: 0;
        padding-right: 0;
    }

    .about-share-2 {
        margin-top: 0px;
        padding-top: 0px;
    }

    .about-sidebar {
        padding: 1.5rem;
    }

    .sidebar-section {
        margin-bottom: 24px;
    }

    .sidebar-title {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }

    .sidebar-item {
        margin-bottom: 24px;
        flex-direction: column;
    }

    .sidebar-item-image {
        width: 100%;
        height: 160px;
        margin-bottom: 12px;
    }

    .sidebar-item-title {
        font-size: 0.9375rem;
    }

    .sidebar-subscribe {
        margin-top: 24px;
    }

    /* .sidebar-subscribe .d-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    } */

    /* .subscribe-btn {
        width: 100%;
    }

    .sidebar-item {
        flex-direction: column;
        gap: 5px !important;
    } */

    .sidebar-item-image {
        width: 100%;
        height: 130px;
        margin-bottom: 12px;
    }
}

/* Event Solo Finish File Css Start */
.laisla-tv-swiper {
    padding: 0px;
    overflow: hidden;
}

.laisla-tv-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-wrapper {
    height: inherit !important;
}

.laisla-tv-swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.laisla-tv-card {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
    background-color: var(--bg-dark);
    aspect-ratio: 16/9;
}

.laisla-tv-swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.laisla-tv-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--bg-dark) !important;
    background-color: var(--text-white);
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 10px !important;
    font-weight: 700;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    background-color: var(--bg-dark);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--bg-dark) !important;
}

.dreamers-swiper {
    margin-bottom: 34px;
}

.about-title-share {
    margin-bottom: 17px;
}

.dreamers-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--bg-dark);
    line-height:34px;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.dreamers-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.6;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.les-videos-section {
    padding-top: 34px;
}

.les-videos-section h2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 17px;
    line-height: 1.2;
    text-transform: uppercase;
    padding-left: 17px;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}


/* Le Lieu Section */
.le-lieu-section {
    background-color: #2a2a2a;
    padding: 17px;
    color: #ffffff;
    margin-top: 17px;
}

.lieu-header {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 17px 0;
    letter-spacing: 0.05em;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.lieu-divider {
    height: 1px;
    background-color: #ffffff;
    margin-bottom: 17px;
}

.lieu-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 17px;
    background-color: #1a1a1a;
}

.lieu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lieu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--bg-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.lieu-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.lieu-address {
    font-size: 14px;
    color: #00bcd4;
    margin: 0;
    line-height: 1.3;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

@media (max-width: 1199.98px) {
    .dreamers-title {
        font-size: 25px;
        line-height: 25px;
    }
}

@media (max-width: 767px) {
    .dreamers-subtitle {
        margin-bottom: 10px;
    }

    .les-videos-section h2 {
        font-size: 20px;
        padding-left: 0px;
    }

    .les-videos-section {
        padding-top: 17px;
    }

    .dreamers-swiper {
        margin-bottom: 17px;
    }
}


/* Event Solo Finish File Css End */

/* Events Same Template File Css Start */
.dreamers-card {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
    background-color: var(--bg-dark);
    aspect-ratio: 15/20;
}

.dreamers-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dreamers-subtitle-2 {
    margin-bottom: 34px;
}

/* Autres Points de Vente Section */
.autres-points-de-vente-section {
    background-color: #231e20;
    padding: 12px 17px 17px 17px;
    color: #ffffff;
    margin-bottom: 17px;
}

.vente-header {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 17px 0;
    letter-spacing: 0.05em;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.vente-divider {
    height: 1px;
    background-color: #ffffff;
    margin-bottom: 0;
}

.vente-list {
    display: flex;
    flex-direction: column;
}

.vente-item {
    padding-top: 17px;
}

.vente-item:not(:first-child) {
    margin-top: 34px;
    padding-top: 0;
}

.vente-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.vente-detail {
    font-size: 14px;
    color: #00bcd4;
    line-height: 1.3;
}

.edition-precedente-image {
    aspect-ratio: 4 / 5;
}

/* Events Same Template File Css End */

/* News Popcorn File Css Start */

/* BUZZ Sidebar */
.buzz-sidebar {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 10px;
    margin-bottom: 17px;
}

.buzz-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--text-white);
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-family: 'Interstate Cond Mono';
    font-weight: bold;
}

.buzz-entry {
    display: flex;
    gap: 10px;
    align-items: start;
}

.buzz-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
}

.buzz-content {
    flex: 1;
}

.buzz-headline {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.buzz-clicks {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-blue);
}

.buzz-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 1.5rem 0;
}

.buzz-divider:last-child {
    display: none;
}

/* Article images text card */
.article-cards-container {
    margin-top: 30px;
}

.article-card {
    background-color: #fff;
}

.article-card-image {
    width: 100%;
    height: 100%;
    /* min-height: 250px; */
    overflow: hidden;
    aspect-ratio: 16/12;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-card-content {
    padding: 0px 20px;
}

.article-category {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-family: 'Interstate Cond Mono', monospace;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    font-family: 'Interstate Cond Mono', monospace;
}

.article-description {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-read-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Interstate Cond Mono', monospace;
}

.article-read-btn:hover {
    background-color: #333;
    color: #fff;
}

.article-load-more-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Interstate Cond Mono', monospace;
}

.article-load-more-btn:hover {
    background-color: #000;
    color: #fff;
}

.popcorn-content {
    position: sticky;
    top: 17px;
}

/* News Popcorn File Css End */
/* Les Artistes File Css Start */
.banner-image-1 {
    width: 100%;
    /* height: 200px; */
    aspect-ratio: 16/2.5;
    overflow: hidden;
    margin-bottom: 17px;
}

.artist-search-container {
    width: 100%;
    max-width: 300px;
}

.artist-search-form {
    width: 100%;
}

.artist-search-form .d-flex {
    width: 100%;
    max-width: 100%;
}

.artist-search-input {
    flex: 1;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.artist-search-input-container {
    flex: 1;
    border: 1px solid #000;
    border-right: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.artist-search-clear {
    font-size: 20px;
    font-weight: bold;
    color: #dc3545;
}

.artist-search-clear:hover,
.artist-search-clear:focus,
.artist-search-clear:active {
    color: #dc3545 !important;
    border: 0px !important;
    box-shadow: none;
    outline: none;
}

.artist-search-input::placeholder {
    color: var(--bg-dark);
}

.artist-search-input:focus {
    border-color: var(--bg-dark);
    outline: none;
}

.artist-search-btn {
    padding: 10px 25px;
    background-color: var(--bg-dark);
    color: #fff;
    border: 1px solid var(--bg-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Interstate Cond Mono', monospace;
}

.artist-search-btn:hover {
    background-color: var(--bg-dark);
    color: #fff;
}

.artist-search-btn:active {
    background-color: var(--bg-dark);
}


/* Artist Grid */
.artist-grid-container {
    margin-top: 20px;
    width: 100%;
}

.artist-grid-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--bg-dark);
    cursor: pointer;
}

.artist-grid-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.artist-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.artist-grid-card:hover .artist-grid-image img {
    transform: scale(1.05);
}

.artist-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px;
    text-align: center;
}

.artist-grid-card:hover .artist-grid-overlay {
    opacity: 1;
    visibility: visible;
}

.artist-grid-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
    font-family: 'Interstate Cond Mono', monospace;
    line-height: 1.2;
    margin-bottom: 3px;
}

.artist-grid-link {
    font-size: 12px;
    font-weight: 400;
    color: #4A90E2;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.artist-grid-link:hover {
    opacity: 0.8;
    color: #4A90E2;
}

/* Artist Solo Page Styles */
.artist-profile-section-container {
    position: sticky;
    top: 17px;
}

.artist-profile-section {
    margin-bottom: 34px;
}

.artist-profile-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.artist-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-profile-content {
    padding: 17px 0px 17px 17px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.artist-header-row {
    margin-bottom: 17px;
}

.artist-header-row .about-share {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.artist-name {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bg-dark);
    margin: 0;
    letter-spacing: 0.05em;
    font-family: 'Interstate Cond Mono', monospace;
    line-height: 1.2;
}

.artist-fan-btn {
    background-color: #fff;
    color: var(--bg-dark);
    border: 1px solid var(--bg-dark);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Interstate Cond Mono', monospace;
}

.artist-fan-btn:hover {
    background-color: var(--bg-dark);
    color: #fff;
}

.artist-biography {
    margin-top: 0;
    flex: 1;
}

.artist-biography p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--bg-dark);
    margin: 0;
}

/* Section Header Styles */
.artist-section {
    margin-bottom: 34px;
}

.section-header {
    margin-bottom: 17px;
}

.section-title-box {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    font-family: 'Interstate Cond Mono', monospace;
}

/* Artist Video Swiper */
.artist-video-swiper {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.artist-video-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.artist-video-swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.artist-video-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.artist-video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-video-swiper .swiper-button-next,
.artist-video-swiper .swiper-button-prev {
    color: var(--bg-dark);
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.artist-video-swiper .swiper-button-next:after,
.artist-video-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.artist-video-swiper .swiper-button-next:hover,
.artist-video-swiper .swiper-button-prev:hover {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

/* Article Cards */
.artist-article-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 17px;
}

.article-image {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--bg-dark);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.article-views {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-blue);
    margin: 0;
}

/* Social Links */
.artist-social-links {
    padding: 0;
}

.social-link-item {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.social-platform {
    font-weight: 600;
    color: var(--bg-dark);
    margin-right: 8px;
}

.social-url {
    color: var(--bg-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-url:hover {
    opacity: 0.7;
    color: var(--bg-dark);
}

/* Other Artists Grid */
.other-artist-card {
    width: 100%;
    aspect-ratio: 10/10;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.other-artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.view-all-artists-btn {
    color: var(--bg-dark);
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Interstate Cond Mono', monospace;
    border-bottom: 1px solid var(--bg-dark);
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments for artist solo page */

@media (max-width: 1199px) {
    .dreamers-swiper {
        margin-bottom: 17px;
    }

    .dreamers-subtitle-2 {
        margin-bottom: 17px;
    }

    .article-cards-container {
        margin-top: 17px;
    }

    .artist-profile-image {
        aspect-ratio: 4/2.5;
    }

    .artist-profile-section {
        margin-bottom: 1px;
    }

    .banner-image-1 {
        aspect-ratio: 16/3.5;
    }

    .artist-profile-content {
        padding: 17px 0px 17px 0px;
    }
}

@media (max-width: 991px) {
    .dreamers-swiper {
        margin-bottom: 5px;
    }

    .artist-profile-image {
        aspect-ratio: 4/1.5;
    }

    .about-share-sm-2 {
        padding-top: 0px;
    }

    .about-content-2 {
        padding-top: 17px;
    }

    .about-title-share-2 {
        margin-bottom: 7px;
    }

    .edition-precedente-image {
        padding-top: 17px;
        aspect-ratio: 4 / 2;
    }
}

@media (max-width: 767.98px) {
    .artist-grid-container .row {
        --bs-gutter-x: 0.5rem;
    }

    .artist-grid-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .artist-grid-link {
        font-size: 12px;
    }

    .artist-grid-title {
        font-size: 16px;
    }

    .artist-grid-link {
        font-size: 13px;
    }

    .article-card-image {
        min-height: 200px;
    }

    .article-card-content {
        padding: 15px;
    }

    .article-description {
        font-size: 13px;
    }

    .artist-search-input {
        width: 100%;
    }

    .artist-profile-section .row {
        --bs-gutter-x: 0;
    }

    .artist-profile-image {
        aspect-ratio: 4/5;
    }

    .artist-header-row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .artist-header-row>div:first-child {
        width: 100%;
    }

    .artist-header-row .about-share {
        width: 100%;
        margin-top: 15px;
    }

    .artist-article-card {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        min-width: 100%;
    }

    .video-title-box {
        padding: 6px 10px;
    }

    .video-title-text {
        font-size: 12px;
    }

    .video-episode {
        font-size: 11px;
    }

    .video-meta {
        padding: 6px 10px;
        font-size: 11px;
    }

    .dreamers-swiper {
        margin-bottom: 17px;
    }

    .about-share-sm {
        padding-top: 0px;
        padding-bottom: 10px;
    }

    .sidebar-item-image {
        height: 85px;
    }

    .other-artist-card {
        aspect-ratio: 16/9;
    }

    .artist-profile-image {
        aspect-ratio: 4/3;
    }

    .edition-precedente-image {
        padding-top: 17px;
        aspect-ratio: 4 / 3;
    }

    .social-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.6875rem;
    }
}

/* Les Artistes File Css End */
