/* Builders Friend Premium Styling - Frontend Enhancements */

:root {
    --bf-green: #418f46;
    --bf-dark: #1a1a1a;
    --bf-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --bf-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Typography Enhancements */
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
.news-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Premium Section Headers */
.section-title-premium {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--bf-green);
    border-radius: 2px;
}

/* Professional Persona Bar */
.persona-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.persona-link {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    margin-right: 20px;
    transition: var(--bf-transition);
    display: inline-flex;
    align-items: center;
}

.persona-link i {
    margin-right: 6px;
    color: var(--bf-green);
}

.persona-link:hover {
    color: var(--bf-green);
}

/* Spotlight Interview Cards */
.spotlight-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--bf-card-shadow);
    transition: var(--bf-transition);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.spotlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.spotlight-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.spotlight-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-image-wrapper img {
    transform: scale(1.05);
}

.spotlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.spotlight-badge {
    background: var(--bf-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

/* Dynamic Interactive Buttons */
.btn-interactive {
    background: var(--bf-green);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--bf-transition);
    box-shadow: 0 4px 15px rgba(65, 143, 70, 0.3);
}

.btn-interactive:hover {
    background: #357a39;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 143, 70, 0.4);
}

/* User Friendly SEO Elements */
.meta-summary {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}