/* Insights Page Specific Styles */

.insights-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insights-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.insights-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.8), rgba(212, 165, 116, 0.3));
    z-index: 2;
}

.insights-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

/* Enhanced Typography for Insights Hero */
.insights-hero .page-label {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.insights-hero .page-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.insights-hero .highlight {
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.insights-hero .page-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Market Resources Section */
.market-resources {
    padding: 5rem 0;
    background: #f8f9fa;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.resource-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.resource-card.featured::before {
    content: "Featured";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.resource-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.resource-features i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Industry Recognition Section */
.industry-recognition {
    padding: 5rem 0;
    background: white;
}

.recognition-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.award-showcase {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.award-highlight {
    margin-bottom: 2rem;
}

.star-badge {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star-badge i {
    color: #ffd700;
    font-size: 1.5rem;
}

.award-highlight h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.award-details p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.media-mentions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.media-mentions h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media-item {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.media-logo {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-logo.bloomberg {
    color: #000;
}

.media-logo.wsj {
    color: #000;
}

.media-logo.orange-coast {
    color: #ff6b35;
}

.media-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.credentials-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.credentials-info h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
}

.credential i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.credential span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Market Outlook Section */
.market-outlook {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.outlook-header {
    text-align: center;
    margin-bottom: 3rem;
}

.outlook-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.outlook-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.outlook-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recognition-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .outlook-features {
        grid-template-columns: 1fr;
    }
    
    .award-showcase {
        padding: 2rem;
    }
    
    .insights-hero {
        min-height: 50vh;
    }
    
    /* Mobile Typography Adjustments */
    .insights-hero .page-label {
        font-size: 1.1rem;
    }
    
    .insights-hero .page-title {
        font-size: 2.8rem;
    }
    
    .insights-hero .page-subtitle {
        font-size: 1.1rem;
    }
}