/* ── Gorriceta Nav Menu Widget ────────────── */

.ghnl-wrapper {
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: static;
}

.ghnl-mega-inner {
    display: flex;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}

/* ── Desktop Menu ─────────────────────────── */
.ghnl-nav {
    display: inline-block;
}

.ghnl-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 36px;
    height: 60px;
}

.ghnl-menu > li {
    margin: 0;
    padding: 0;
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.ghnl-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    padding: 6px 0;
    transition: color 0.2s;
}

.ghnl-menu > li > a:hover,
.ghnl-menu > li.is-mega-open > a {
    color: #BC955C;
}

/* ── Chevron Icon ─────────────────────────── */
.ghnl-icon-chevron {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    margin-top: -1px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.ghnl-menu > li.is-mega-open > a .ghnl-icon-chevron {
    transform: rotate(225deg) translateY(1px);
}

/* ── Mega Menu Panel ──────────────────────── */
.ghnl-mega-panel {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
    top: var(--ghnl-navbar-bottom, 80px);
    background: #000D29;
    z-index: 99990;
    padding: 60px 80px;
    box-sizing: border-box;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(90deg, #001F60 0%, #BC955C 50%, #001F60 100%);
    border-image-slice: 1;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 0px);
    transform: translateY(-8px);
    transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                visibility 0.4s ease;
    pointer-events: none;
    will-change: clip-path, transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.ghnl-mega-panel.is-open {
    visibility: visible;
    opacity: 1;
    clip-path: inset(0 0 0% 0 round 0px);
    transform: translateY(0);
    pointer-events: all;
}

/* ── Mega Panel Inner Layout ──────────────── */
.ghnl-mega-left {
    flex: 1;
    width: 100%;
    padding-right: 0;
    border-right: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Section Label ────────────────────────── */
.ghnl-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #BC955C;
    margin-bottom: 24px;
}

.ghnl-section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px !important;
    background: #BC955C;
    flex-shrink: 0;
}

/* ── Big Heading ──────────────────────────── */
.ghnl-mega-heading {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.ghnl-mega-heading em {
    font-style: italic;
    color: #BC955C;
    font-weight: 700;
}

.ghnl-mega-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0 0 36px 0;
}

/* ── Sub-item List ────────────────────────── */
.ghnl-mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ghnl-mega-links li {
    border-top: none;
}

.ghnl-mega-links li + li {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.ghnl-mega-links li:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ghnl-mega-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    text-decoration: none;
    transition: opacity 0.2s;
    gap: 16px;
}

.ghnl-mega-links li a:hover { opacity: 0.75; }

.ghnl-link-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ghnl-link-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.ghnl-link-desc {
    font-size: 13px; 
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.ghnl-link-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #BC955C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghnl-link-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ── Right Panel Label ────────────────────── */
.ghnl-right-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #BC955C;
    margin-bottom: 20px;
}

.ghnl-right-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #BC955C;
    flex-shrink: 0;
}

/* ── Featured Card ────────────────────────── */
.ghnl-featured-card {
    border: 1px solid rgba(188,149,92,0.4);
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.ghnl-featured-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
}

.ghnl-featured-card-body {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ── Stats Row ────────────────────────────── */
.ghnl-stats {
    display: flex;
    gap: 28px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ghnl-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ghnl-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #BC955C;
    line-height: 1;
}

.ghnl-stat-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    line-height: 1.3;
}

/* ── CTA Link ─────────────────────────────── */
.ghnl-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BC955C;
    text-decoration: none;
    margin-top: 20px;
    transition: opacity 0.2s;
}

.ghnl-cta-link:hover { opacity: 0.75; }

.ghnl-cta-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ── Industry Card ────────────────────────── */
.ghnl-industry-card {
    border: 1px solid;
    border-image-source: linear-gradient(282.84deg, #A67C45 7.23%, #AD854E 14.93%, #C19E67 26.9%, #C5A36C 28.61%, #E6D3A3 50%, #D4B882 71.39%, #A17942 91.92%);
    border-image-slice: 1;
    padding: 24px 28px;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.ghnl-industry-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.ghnl-industry-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.ghnl-industry-list {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex: 1;
}

.ghnl-industry-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ghnl-industry-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.ghnl-industry-list li a:hover { color: #BC955C; }

.ghnl-industry-list li a svg {
    width: 12px;
    height: 12px;
    stroke: rgba(240, 241, 245, 0.30) !important;
    color: rgba(240, 241, 245, 0.30) !important;
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

/* ── Leadership Card ──────────────────────── */
.ghnl-leadership-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.ghnl-leader-top {
    display: flex;
    gap: 16px;
    align-items: stretch;
    position: relative;
}

.ghnl-leader-photo {
    width: 90px;
    height: 110px;
    min-width: 90px;
    min-height: 110px;
    max-width: 90px;
    max-height: 110px;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(100%);
    border-bottom: 4px solid #BC955C !important;
}

.ghnl-leader-photo-placeholder {
    width: 90px;
    height: 110px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.ghnl-leader-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.ghnl-leader-info .ghnl-view-profile {
    margin-top: auto;
    align-self: flex-start;
}

.ghnl-leader-role {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.ghnl-leader-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 4px 0 8px;
}

.ghnl-leader-bio {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

.ghnl-view-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: auto;
}

.ghnl-view-profile:hover { color: #BC955C; }

.ghnl-view-profile svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ── Article Card ─────────────────────────── */
.ghnl-article-card {
    border: 1px solid rgba(188,149,92,0.4);
    padding: 24px 28px;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ghnl-article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ghnl-article-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 3px 8px;
}

.ghnl-article-date {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

.ghnl-article-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.ghnl-article-excerpt {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ghnl-read-article {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #BC955C;
    text-decoration: none;
    transition: opacity 0.2s;
}

.ghnl-read-article:hover { opacity: 0.75; }

.ghnl-read-article svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ── Hamburger Button ─────────────────────── */
.ghnl-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.ghnl-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger → X animation */
.ghnl-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.ghnl-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.ghnl-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Dropdown Menu ─────────────────── */
.ghnl-mobile-menu {
    display: none;
    position: fixed;
    top: var(--ghnl-navbar-bottom, 80px);
    left: 0;
    right: 0;
    width: 100vw;
    background: #000D29;
    z-index: 99990;
    max-height: calc(100vh - var(--ghnl-navbar-bottom, 80px));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid;
border-image-source: linear-gradient(90deg, #001F60 0%, #BC955C 50%, #001F60 100%);
border-image-slice: 1;
}

.ghnl-mobile-menu.is-open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* ── Mobile Menu List ─────────────────────── */
.ghnl-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0 24px;
}

.ghnl-mobile-list > li {
    border-bottom: 1px solid #F0F1F5;
}

/* ── Mobile Menu Row ──────────────────────── */
.ghnl-mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
}

.ghnl-mobile-row > a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    flex: 1;
    transition: color 0.2s;
}

.ghnl-mobile-row > a:hover { color: #BC955C; }

/* ── Mobile Toggle Button ─────────────────── */
.ghnl-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
    padding: 0;
}

.ghnl-mobile-list > li.is-expanded .ghnl-mobile-toggle {
    border: 1px solid rgba(255,255,255,0.2);
}

.ghnl-mobile-toggle:hover {
    border-color: #BC955C;
    color: #BC955C;
}

.ghnl-mobile-toggle svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.ghnl-mobile-list > li.is-expanded .ghnl-mobile-toggle svg {
    transform: rotate(180deg);
}

/* ── Mobile Submenu ───────────────────────── */
.ghnl-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 24px 16px 24px;
    display: none;
    /*background: rgba(0,0,0,0.15);*/
}

.ghnl-mobile-list > li.is-expanded .ghnl-mobile-submenu {
    display: block;
}

.ghnl-mobile-submenu li {
    border-bottom: none;
}

.ghnl-mobile-submenu li:last-child {
    border-bottom: none;
}

.ghnl-mobile-submenu li a {
    display: block;
    padding: 12px 0 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.ghnl-mobile-submenu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #BC955C;
}

.ghnl-mobile-submenu li a:hover { color: #BC955C; }

/* ── Mobile CTA Button ────────────────────── */
.ghnl-mobile-cta {
    padding: 24px;
}

.ghnl-mobile-cta a {
    display: block;
    width: 100%;
    padding: 16px;
    background: #BC955C;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s;
}

.ghnl-mobile-cta a:hover { opacity: 0.85; }

/* ── Overlay ──────────────────────────────── */
.ghnl-overlay {
    display: none;
}

/* ── Breakpoints ──────────────────────────── */
@media (min-width: 1025px) {
    .ghnl-nav           { display: inline-block; }
    .ghnl-hamburger     { display: none; }
    .ghnl-mobile-menu   { display: none !important; }
}

@media (max-width: 1024px) {
    .ghnl-nav           { display: none; }
    .ghnl-hamburger     { display: inline-flex; }
    .ghnl-mega-panel    { display: none !important; }
}
