/* Base styles */
:root {
    --primary-blue: #102446;
    --primary-blue-soft: #1d2b4d;
    --link-blue: #1f55a6;
    --bg-light: #f8f9fa;
    --surface-low: #f3f4f5;
    --text-dark: #102446;
    --text-grey: #45464e;
    --border-grey: #c5c6cf;
    --white: #ffffff;

    /* Tags and Accents */
    --yellow: #f0b429;
    --green: #0f8a44;
    --red: #ba1a1a;
    --orange: #e65c00;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url('../fonts/material-symbols/MaterialSymbolsOutlined.woff2') format('woff2');
}

@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    font-weight: 100 700;
    src: url('../fonts/material-symbols/MaterialSymbolsRounded.woff2') format('woff2');
}

@font-face {
    font-family: 'Material Symbols Sharp';
    font-style: normal;
    font-weight: 100 700;
    src: url('../fonts/material-symbols/MaterialSymbolsSharp.woff2') format('woff2');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', 'Segoe UI', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
}

body,
button,
input,
select,
textarea,
option,
label,
a,
p,
span,
div,
li,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', 'Segoe UI', Arial, sans-serif;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-outline-white {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--border-grey);
    font-weight: 600;
}

/* Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid var(--border-grey);
    background: var(--white);
}

.header-left {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

.main-nav a {
    position: relative;
    color: var(--primary-blue);
    padding-bottom: 10px;
    overflow: hidden;
}

.main-nav a::before,
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    pointer-events: none;
}

.main-nav a::before {
    background: var(--primary-blue);
    opacity: 0;
}

.main-nav a::after {
    background: var(--orange);
    transform: translateX(-105%);
    transition: transform 180ms ease;
}

.main-nav a.active::before {
    opacity: 1;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: translateX(0);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-quick-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--text-grey);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    margin-left: 8px;
    font-size: 14px;
}

.lang-selector {
    position: relative;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.lang-caret {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 62px;
    padding: 6px 0;
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(16, 36, 70, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 20;
}

.lang-selector summary::-webkit-details-marker {
    display: none;
}

.lang-menu a {
    display: block;
    padding: 8px 12px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
}

.lang-menu a:hover {
    background: var(--surface-low);
}

.lang-selector[open] .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-selector[open] .lang-caret {
    transform: rotate(225deg) translateY(1px);
}

.notifications {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: var(--primary-blue);
    transition: transform 160ms ease, color 160ms ease;
}

.notifications:hover {
    transform: translateY(-1px);
    color: var(--link-blue);
}

.notification-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 22px;
    height: 22px;
}

.notifications .badge {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    background-color: var(--red);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    border: 2px solid var(--white);
}

.profile-button {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-avatar img,
.profile-avatar-fallback {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.profile-avatar-fallback {
    background: linear-gradient(135deg, var(--primary-blue), var(--link-blue));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.header-logout .btn {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 36px 40px 36px;
    background-color: var(--bg-light);
    display: flex;
    overflow: hidden;
}

.hero-content {
    max-width: 56%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero h1 {
    font-size: 42px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 10px;
}

.hero h1 strong {
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    color: var(--text-dark);
}

.hero p strong {
    font-weight: 700;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../images/hero.png');
    /* Placeholder for team photo */
    background-size: cover;
    background-position: center left;
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
    mask-image: linear-gradient(to right, transparent, black 30%);
}

.hero-actions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 3;
}

.action-card {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(16, 36, 70, 0.12);
}

.ac-icon {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 300;
    display: flex;
    align-items: center;
}

.ac-icon.blue {
    color: var(--link-blue);
}

.hero-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -20px;
    margin-bottom: 24px;
    border-radius: 0;
}

.ac-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.ac-text p {
    font-size: 12px;
    color: var(--text-grey);
}

.ac-text p span {
    color: var(--link-blue);
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 30px;
    padding: 60px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.section-block {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-grey);
    padding-bottom: 10px;
}

.block-header h2 {
    margin-bottom: 0;
    border-bottom: none;
}

.view-all {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Left Column (Formación & Herramientas) */
.formation-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
}

.card-header-flex h3 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.training-highlight {
    padding: 10px 0 14px;
    border-bottom: 1px solid var(--border-grey);
}

.training-highlight:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.training-highlight-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.training-highlight-head h4 {
    color: var(--primary-blue);
    font-size: 17px;
    margin-bottom: 4px;
}

.training-detail-trigger {
    color: var(--link-blue);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    padding: 0 2px;
}

.training-detail-trigger:hover {
    color: var(--primary-blue);
}

.focus-slot {
    background: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border-radius: 0;
}

.focus-slot-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.focus-slot-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.focus-slot-lead {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.focus-slot-marker {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    flex: 0 0 10px;
    margin-top: 7px;
}

.focus-slot-lead-copy {
    position: relative;
    padding-left: 16px;
}

.focus-slot-lead-copy::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -12px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.focus-slot-heading {
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 2px;
}

.focus-slot-intro {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    margin: 0;
}

.focus-slot-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
}

.focus-slot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

.focus-slot-item-label {
    flex: 1;
}

.focus-slot-chevron {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1;
}

.focus-slot-chevron-right {
    margin-left: auto;
}

.focus-slot-cta {
    display: block;
    width: 100%;
    padding: 11px 16px;
    border-radius: 6px;
    background: var(--white);
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 800;
    text-align: center;
}

.focus-slot-cta:hover {
    background: #f2f4f7;
}

.focus-slot-body,
.focus-slot-body p,
.focus-slot-body li,
.focus-slot-body a,
.focus-slot-body strong,
.focus-slot-body em,
.focus-slot-body h1,
.focus-slot-body h2,
.focus-slot-body h3,
.focus-slot-body h4,
.focus-slot-body h5,
.focus-slot-body h6 {
    color: var(--white);
}

.formation-card>p {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.formation-links {
    margin-top: 20px;
}

.formation-links li {
    padding: 12px 0;
    border-top: 1px solid var(--border-grey);
}

.twocol-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.badge-text {
    color: var(--text-grey);
    font-weight: 400;
    margin-right: 5px;
}

.dot-red {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--red);
    border-radius: 50%;
}

.tools-grid-container {
    position: relative;
}

.tools-label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--white);
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border: 1px solid var(--border-grey);
    padding: 25px 20px 20px;
    border-radius: 8px;
}

.tool-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    background: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
    color: var(--text-dark);
    box-shadow: 0 6px 16px rgba(16, 36, 70, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.tool-btn-label {
    flex: 1;
}

.tool-icon-shell {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(16, 36, 70, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
}

.tool-icon-shell-image {
    overflow: hidden;
}

.tool-icon-shell-material {
    background: rgba(16, 36, 70, 0.06);
}

.tool-icon-shell-large {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
}

.tool-material-icon {
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
}

.material-symbols-sharp {
    font-family: 'Material Symbols Sharp';
}

.tool-upload-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(16, 36, 70, 0.12);
    background: var(--white);
}

.tools-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
    gap: 14px;
}

.tools-desktop {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
    min-height: 220px;
}

.tools-category-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.tools-category-block + .tools-category-block {
    margin-top: 26px;
}

.tools-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tools-category-handle,
.tools-category-toggle {
    border: 1px solid rgba(16, 36, 70, 0.12);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 10px;
    min-height: 34px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.tools-category-handle {
    letter-spacing: 1px;
    cursor: grab;
}

.tools-category-block.is-dragging-category {
    opacity: 0.62;
}

.tools-category-block.is-category-target {
    outline: 2px dashed rgba(31, 85, 166, 0.35);
    outline-offset: 8px;
}

.tools-category-title {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    flex: 1 1 auto;
}

.tools-desktop-surface {
    display: grid;
    grid-template-columns: repeat(var(--desktop-columns, 10), 112px);
    grid-auto-rows: 148px;
    gap: 10px 14px;
    align-content: start;
    min-height: calc(var(--desktop-rows, 1) * 148px);
    padding: 12px 8px 8px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(16, 36, 70, 0.02) 0%, rgba(16, 36, 70, 0.05) 100%);
    border: 1px solid rgba(16, 36, 70, 0.08);
    overflow-x: auto;
}

.tools-category-block.is-collapsed .tools-desktop-surface {
    display: none;
}

.tool-shortcut {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 10px 14px;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    text-align: center;
    position: relative;
    grid-column: var(--tool-col, auto);
    grid-row: var(--tool-row, auto);
    min-height: 140px;
}

.tool-shortcut .tool-icon-shell {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f8 100%);
    box-shadow: 0 12px 24px rgba(16, 36, 70, 0.12);
}

.tool-shortcut .tool-material-icon {
    font-size: 34px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.tool-shortcut-label {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary-blue);
    word-break: break-word;
}

.tool-shortcut:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 85, 166, 0.16);
    background: rgba(31, 85, 166, 0.04);
    box-shadow: none;
}

.tool-shortcut.is-dragging {
    opacity: 0.52;
}

.tool-shortcut.drag-over {
    border-color: var(--link-blue);
    background: rgba(31, 85, 166, 0.08);
}

.tools-desktop-card {
    padding: 24px;
}

.tools-desktop-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 18px;
}

.tools-desktop-note {
    max-width: 540px;
}

.dashboard-tools-shortcuts {
    display: block;
    width: 100%;
}

[data-dashboard-tool-list] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.dashboard-tools-shortcuts .tool-shortcut {
    min-height: 164px;
    padding: 10px 10px 14px;
}

.dashboard-tools-shortcuts .tool-shortcut .tool-icon-shell {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
}

.dashboard-tools-shortcuts .tool-shortcut .tool-material-icon {
    font-size: 38px;
}

.icon-source-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.icon-source-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    background: var(--bg-light);
    font-size: 14px;
    font-weight: 600;
}

.tool-icon-admin-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin: 8px 0 12px;
    border: 1px solid var(--border-grey);
    border-radius: 14px;
    background: var(--surface-low);
}

.tool-icon-admin-preview-copy p {
    margin: 0 0 4px;
}

.inline-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.material-symbol-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.material-symbol-search {
    flex: 0 1 260px;
}

.compact-input {
    width: 100%;
    max-width: 260px;
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    padding: 9px 10px;
    font-size: 14px;
    background: var(--white);
}

.material-symbol-color {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.material-symbol-style {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.material-symbol-style select {
    min-width: 120px;
}

.material-symbol-color input[type="color"] {
    width: 44px;
    height: 36px;
    padding: 2px;
    border: 1px solid var(--border-grey);
    border-radius: 10px;
    background: var(--white);
}

.material-symbol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
    gap: 10px;
}

.material-symbol-grid-scroll {
    max-height: 414px;
    overflow-y: auto;
    padding-right: 6px;
}

.material-symbol-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--border-grey);
    border-radius: 14px;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    text-align: left;
}

.material-symbol-option:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 85, 166, 0.4);
    box-shadow: 0 10px 20px rgba(16, 36, 70, 0.08);
}

.material-symbol-option.is-selected {
    border-color: var(--link-blue);
    box-shadow: 0 0 0 2px rgba(31, 85, 166, 0.14);
}

/* Middle Column (Noticias Clave & Equipo) */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-grey);
    box-shadow: 0 10px 24px rgba(16, 36, 70, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(16, 36, 70, 0.14);
}

.card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 15px;
}

.card-img-small {
    width: 80px;
    height: 80px;
    background-size: cover;
    border-radius: 6px;
}

.tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tag-yellow {
    background-color: var(--yellow);
}

.tag-green {
    background-color: var(--green);
}

.tag-orange {
    background-color: var(--orange);
}

.tag-orange.outline {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
}

.card-content {
    padding: 15px;
}

.card-content h3,
.card-content h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.card-content h3 {
    font-size: 20px;
}

.card-content h4 {
    font-size: 15px;
}

.date {
    font-size: 13px;
    color: var(--text-grey);
}

.small-news-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-card {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 140px;
    overflow: hidden;
}

.small-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 70%,
            rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.small-side {
    position: relative;
    z-index: 2;
    padding: 20px;
    height: 100%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-card {
    display: flex;
    padding: 0;
}

.split-img {
    width: 250px;
    background-size: cover;
}

.split-text {
    padding: 20px;
}

/* Equipo */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    min-height: 156px;
    border-radius: 999px;
}

.team-card-media {
    flex: 0 0 auto;
}

.team-member-avatar-shell {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f8 100%);
    box-shadow: 0 12px 24px rgba(16, 36, 70, 0.12);
}

.team-member-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.team-member-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--link-blue));
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
}

.team-card-copy {
    min-width: 0;
}

.team-card-copy h3 {
    margin-bottom: 6px;
}

.team-card-copy p {
    margin: 0 0 4px;
    word-break: break-word;
}

/* Right Column (Focus On & KPIs) */
.strategy-card {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.strategy-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.strategy-card h3 strong {
    font-weight: 700;
}

.strategy-content {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-dot {
    position: absolute;
    left: -5px;
    top: 5px;
    width: 9px;
    height: 9px;
    background-color: var(--yellow);
    border-radius: 50%;
}

.strategy-content h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.strategy-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.strategy-links {
    margin-bottom: 20px;
}

.strategy-links li {
    padding: 8px 0;
}

.strategy-links a {
    color: var(--white);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.strategy-card .btn {
    width: 100%;
    text-align: center;
}

.kpi-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.kpi-card h3 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-blue {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--link-blue);
    border-radius: 50%;
}

.kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    text-align: center;
}

.kpi-item {
    border-right: 1px solid var(--border-grey);
}

.kpi-item:last-child {
    border-right: none;
}

.kpi-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.text-blue {
    color: var(--primary-blue);
}

.text-green {
    color: var(--green);
}

.kpi-label {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.recognitions-card {
    border-top: 1px solid var(--border-grey);
    padding-top: 20px;
}

.recognitions-card h3 {
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.dot-green {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
}

.quote-box p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.quote-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatars {
    display: flex;
}

.avatars img {
    border-radius: 50%;
    margin-left: -5px;
    border: 2px solid var(--white);
}

.avatars img:first-child {
    margin-left: 0;
}

.controls button {
    border: 1px solid var(--border-grey);
    background: transparent;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    padding: 40px;
    border-top: 1px solid var(--border-grey);
    gap: 40px;
}

.footer-title {
    font-size: 20px;
    color: var(--primary-blue);
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}
