/* ==========================================
   ROSTER GRID (shortcode)
   ========================================== */

/* Widen the Divi row that wraps the roster grid to 95% viewport */
.et_pb_row:has(.los-roster-grid) {
    max-width: 95% !important;
}

.los-roster-grid {
    display: grid;
    gap: 28px;
    margin: 0;
}
.los-cols-2 { grid-template-columns: repeat(2, 1fr); }
.los-cols-3 { grid-template-columns: repeat(3, 1fr); }
.los-cols-4 { grid-template-columns: repeat(4, 1fr); }

.los-artist-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8ecf1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.los-artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.los-artist-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.los-artist-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a1a2e;
}
.los-artist-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
.los-artist-card:hover .los-artist-thumb {
    transform: scale(1.04);
}
.los-artist-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.los-artist-info {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.los-artist-name {
    margin: 0 0 6px;
    font-size: 1.25em;
    font-weight: 700;
    color: #222;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}
.los-artist-genre {
    font-style: italic;
    color: #666;
    font-size: 0.85em;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   SINGLE ARTIST PAGE — TWO-COLUMN LAYOUT
   ========================================== */

.los-single-artist {
    background: #fff;
}

.los-artist-layout {
    display: flex;
    gap: 60px;
    max-width: 95%;
    margin: 0 auto;
    padding: 40px 30px 20px;
    align-items: flex-start;
}

.los-artist-photo-col {
    flex: 0 0 48%;
    max-width: 48%;
}
.los-artist-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.los-artist-content-col {
    flex: 1;
    min-width: 0;
}

/* Back link */
.los-back-link {
    display: inline-block;
    margin: 0 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2563eb;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.los-back-link:hover {
    color: #1d4ed8;
}

/* Title & tagline */
.los-artist-content-col .los-artist-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    font-weight: 800;
    color: #222 !important;
    margin: 0 0 8px;
    padding: 0;
    line-height: 1.15;
}
.los-artist-content-col .los-artist-tagline {
    font-style: italic;
    color: #666;
    font-size: 1.3em;
    margin: 0 0 24px;
    padding: 0;
}

/* Selling-point bullets */
.los-artist-bullets {
    list-style: disc;
    padding: 0 0 0 24px;
    margin: 0 0 28px;
}
.los-artist-bullets li {
    padding: 4px 0;
    font-size: 1.15em;
    line-height: 1.55;
    color: #333;
}

/* Bio */
.los-artist-bio {
    font-size: 1.15em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
}
.los-artist-bio p {
    margin-bottom: 1em;
}

/* Pull quote — inline styled, matching old Squarespace look */
.los-artist-quote {
    margin: 0 0 36px;
}
.los-quote-text {
    font-size: 1.4em;
    font-style: italic;
    line-height: 1.6;
    color: #c17817;
    font-weight: 600;
    margin: 0;
}
.los-quote-attr {
    font-style: normal;
    font-weight: 700;
    color: #222;
    font-size: 0.92em;
}

/* Artist Information — simple bullet list */
.los-artist-info-section {
    margin: 0 0 34px;
    padding-top: 14px;
    border-top: 1px solid #e5e5e5;
}
.los-info-heading {
    font-size: 1.15em;
    color: #222;
    margin: 0 0 12px;
}
.los-info-disclaimer {
    color: #333;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0 0 18px;
}
.los-info-list {
    list-style: disc;
    padding: 0 0 0 24px;
    margin: 0;
}
.los-info-list li {
    padding: 5px 0;
    font-size: 1.15em;
    line-height: 1.5;
}
.los-info-list li a {
    color: #222;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.los-info-list li a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Inquire button */
.los-inquire-wrap {
    margin: 10px 0 0;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}
.los-inquire-button {
    display: inline-block;
    padding: 14px 36px;
    background: #2563eb;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.los-inquire-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}

/* ==========================================
   SINGLE ARTIST PAGE — VIDEO (below layout)
   ========================================== */

.los-video-section {
    background: #f8fafc;
    padding: 50px 30px 60px;
}
.los-video-inner {
    max-width: 860px;
    margin: 0 auto;
}
.los-video-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
    padding: 0;
    text-align: center;
}
.los-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.los-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .los-cols-3, .los-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .los-artist-layout {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px 20px;
    }
    .los-artist-photo-col {
        flex: none;
        max-width: 100%;
    }
    .los-artist-photo {
        max-height: 500px;
        object-fit: contain;
        object-position: center top;
    }
    .los-artist-content-col .los-artist-title {
        font-size: 2em;
    }
    .los-video-section {
        padding: 40px 20px 50px;
    }
}
@media (max-width: 768px) {
    .los-roster-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .los-artist-layout {
        padding: 20px 16px 16px;
    }
    .los-artist-content-col .los-artist-title {
        font-size: 1.7em;
    }
    .los-inquire-button {
        display: block;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .los-roster-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}
