:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-87eb733 *//* ===== ABOUT THE ARTIST PAGE ===== */
.about-artist {
    background: #0a0a0a;
    padding: 60px 20px 80px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ----- স্টুডিও ফটো (শীর্ষে) ----- */
.artist-hero {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.artist-hero img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.artist-hero:hover img {
    transform: scale(1.01);
}

/* ----- কন্টেন্ট এরিয়া ----- */
.artist-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* ----- হেডলাইন ----- */
.artist-headline {
    text-align: center;
    margin-bottom: 50px;
}

.artist-headline .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.artist-headline h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.artist-headline h1 span {
    color: #d4af37;
}

/* ----- বায়োগ্রাফি + স্টেটমেন্ট (দুই কলাম) ----- */
.bio-statement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.bio-block h2,
.statement-block h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.bio-block p {
    font-size: 1rem;
    line-height: 1.9;
    color: #ccd6f6;
    margin-bottom: 18px;
}

.bio-block p:last-child {
    margin-bottom: 0;
}

/* ----- স্টেটমেন্ট ব্লক (কোট) ----- */
.statement-block blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e0d8;
    font-style: italic;
    padding: 30px 35px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 4px solid #d4af37;
    border-radius: 12px;
    margin: 0;
    position: relative;
}

.statement-block blockquote::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

/* ----- বাটনসমূহ ----- */
.artist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 42px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

/* প্রাইমারি বাটন (সলিড গোল্ডেন) */
.btn-primary {
    background: #d4af37;
    color: #0a0a0a;
    border: 2px solid #d4af37;
}

.btn-primary:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

/* সেকেন্ডারি বাটন (আউটলাইন গোল্ডেন) */
.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

/* ===== রেসপন্সিভ ===== */
@media (max-width: 992px) {
    .bio-statement-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .artist-headline h1 {
        font-size: 2.8rem;
    }
    
    .artist-hero {
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .about-artist {
        padding: 30px 15px 60px;
    }
    
    .artist-headline h1 {
        font-size: 2.2rem;
    }
    
    .bio-block h2,
    .statement-block h2 {
        font-size: 1.5rem;
    }
    
    .statement-block blockquote {
        padding: 20px 22px;
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .artist-actions {
        flex-direction: column;
        gap: 15px;
    }
}/* End custom CSS */