/* Travel Advisor Card Styles - COMPLETE */

.advisor-card {
    margin: 3rem auto;
    padding: 2rem;
    max-width: 1280px;
    width: 100%;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,85,150,0.1);
    box-sizing: border-box;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.advisor-card-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

/* Photo styles - BIGGER: 180px */
.advisor-photo {
    flex: 0 0 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,90,140,0.3);
    border: 3px solid white;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content styles */
.advisor-content {
    flex: 1;
    min-width: 300px;
}

.advisor-headline {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e2a3a;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.advisor-name {
    color: #005f8c;
    border-bottom: 2px solid #ffd966;
    padding-bottom: 2px;
}

.advisor-content p {
    margin: 0.5rem 0 1rem 0;
    line-height: 1.5;
    color: #33475b;
    font-size: 1rem;
}

/* Button styles - text and icon WHITE */
.advisor-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #005f8c;
    color: white !important;        /* Force white text */
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid #004b70;
    box-shadow: 0 4px 8px rgba(0,95,140,0.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.advisor-button:hover {
    background-color: #004b70;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,95,140,0.3);
    color: white !important;        /* Keep white on hover */
}

.advisor-button svg {
    width: 18px;
    height: 18px;
    stroke: white !important;       /* Force white icon */
    fill: none;
}

/* Profile link - BIGGER */
.advisor-profile-link {
    margin: 1rem 0 0 0;             /* Increased top margin */
    font-size: 1rem;                 /* Increased from 0.85rem */
    color: #5a6f84;
}

.advisor-profile-link a {
    color: #005f8c;
    text-decoration: none;
    border-bottom: 1px dotted #b3c9db;
    transition: all 0.2s ease;
    font-weight: 500;                /* Slightly bolder */
    padding: 2px 0;                  /* Better click area */
}

.advisor-profile-link a:hover {
    color: #003d5a;
    border-bottom: 1px solid #005f8c;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .advisor-card {
        padding: 1.5rem;
    }
    
    .advisor-photo {
        flex: 0 0 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .advisor-card-container {
        justify-content: center;
        text-align: center;
    }
    
    .advisor-button {
        margin: 0 auto;
    }
    
    .advisor-profile-link {
        font-size: 0.95rem;           /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .advisor-photo {
        flex: 0 0 140px;
        height: 140px;
    }
    
    .advisor-headline {
        font-size: 1.3rem;
    }
}