/**
 * Blog Featured Pro Component Styles
 */

.blog-featured-pro-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #B39783;
}

.blog-featured-pro-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.featured-pro-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.featured-pro-logo-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 120px;
    height: 120px;
}

.featured-pro-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    padding: 0.5rem;
}

.featured-pro-info {
    flex: 1;
}

.featured-pro-name {
    font-size: 1.75rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.featured-pro-tagline {
    color: #666;
    font-style: italic;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.featured-pro-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pro-link-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    background: #f9f9f9;
    border-radius: 4px;
    transition: all 0.2s;
}

.pro-link-item:hover {
    background: #f0f0f0;
    color: #B39783;
}

.featured-pro-body {
    color: #444;
}

.featured-pro-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-pro-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-badge-sm {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .featured-pro-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .featured-pro-contact-grid {
        justify-content: center;
    }

    .featured-pro-actions {
        justify-content: center;
        width: 100%;
    }

    .featured-pro-actions .btn {
        width: 100%;
        text-align: center;
    }
}