/* PA Global — custom additions (author card, home globe hero) */

/* ---------------------------------------------------------------
   Insight author card (name + LinkedIn), rendered on single insight
--------------------------------------------------------------- */
.insight-author-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 12px 20px 12px 14px;
    border: 1px solid rgba(0, 44, 84, 0.15);
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    color: #002c54;
    transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.insight-author-card.has-link:hover {
    border-color: #002c54;
    box-shadow: 0 8px 24px rgba(0, 44, 84, 0.12);
    transform: translateY(-1px);
}
.insight-author-card .insight-author-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: #002c54;
}
.insight-author-card .insight-author-icon svg,
.insight-author-card .insight-author-icon img {
    width: 20px;
    height: 20px;
}
.insight-author-card .insight-author-icon svg path {
    fill: #fff;
}
.insight-author-card .insight-author-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.insight-author-card .insight-author-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a97a6;
}
.insight-author-card .insight-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #002c54;
}

/* ---------------------------------------------------------------
   Home hero — rotating globe background + navy text/button
--------------------------------------------------------------- */
.container-head-slider.home-hero-globe {
    /* Globe renders on a light backdrop, so the fallback is white (not navy) */
    background-color: #ffffff;
    color: #002c54;
}
.home-hero-globe .home-hero-globe-frame {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none; /* let clicks pass to the text/button overlay */
}
/* Text overlay must sit above the globe iframe */
.home-hero-globe .content {
    z-index: 2;
}
/* Navy text so it reads over the light globe */
.home-hero-globe .content,
.home-hero-globe .content .sub-title,
.home-hero-globe .content h1,
.home-hero-globe .content .big {
    color: #002c54 !important;
}
/* Navy outlined button + arrow */
.home-hero-globe .content .button-default.outlined-blue-hover-blue {
    border-color: #002c54;
    color: #002c54;
}
.home-hero-globe .content .button-default svg path {
    fill: #002c54;
}
.home-hero-globe .content .button-default:hover {
    background-color: #002c54;
    color: #ffffff;
}
.home-hero-globe .content .button-default:hover svg path {
    fill: #ffffff;
}
