@font-face {
    font-family: 'Open Sauce Two';
    src: url('/alg/media/OpenSauceTwo_Regular-s.p.0nrfs.0nlutpe.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sauce Two';
    src: url('/alg/media/OpenSauceTwo_Bold-s.p.0~s0h-v.x0-5_.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Transducer';
    src: url('/alg/media/Transducer_Regular-s.p.0lup8tl2skow3.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --alg-ink: #103440;
    --alg-blue: #36a5c2;
    --alg-blue-dark: #188ca8;
    --alg-blue-soft: #cceff6;
    --alg-pale: #f0f5f7;
    --alg-muted: #617985;
    --alg-border: #dbe8ed;
    --alg-white: #ffffff;
    --alg-radius: 18px;
    --alg-shadow: 0 16px 50px rgba(16, 52, 64, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--alg-white);
    color: var(--alg-ink);
    font-family: 'Open Sauce Two', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.alg-shell {
    width: min(1280px, calc(100% - 80px));
    margin-inline: auto;
}

.alg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: var(--alg-blue);
    color: #fff;
    padding: 0 20px;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}
.alg-btn:hover { background: var(--alg-blue-dark); transform: translateY(-1px); }

.alg-header-wrap {
    position: fixed;
    top: 8px;
    left: 0;
    right: 0;
    z-index: 100;
    padding-inline: 8px;
}
.alg-header {
    width: min(1700px, 100%);
    height: 64px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 2px solid var(--alg-pale);
    border-radius: 16px;
    background: rgba(240, 245, 247, .75);
    backdrop-filter: blur(25px);
    padding: 0 18px 0 26px;
}
.alg-logo img { width: 187px; display: block; }
.alg-nav { display: flex; align-items: center; gap: 30px; }
.alg-nav a,
.alg-company-trigger {
    color: var(--alg-ink);
    font-size: 13px;
    line-height: 1;
    background: none;
    border: 0;
    padding: 16px 0;
    cursor: pointer;
}
.alg-nav a:hover,
.alg-nav a.is-active,
.alg-company-trigger:hover { color: var(--alg-blue); }
.alg-company { position: relative; }
.alg-company-trigger { display: flex; gap: 6px; align-items: center; }
.alg-company-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 180px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(240, 245, 247, .95);
    box-shadow: var(--alg-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
}
.alg-company:hover .alg-company-menu,
.alg-company:focus-within .alg-company-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.alg-company-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 7px;
}
.alg-company-menu a:hover { background: #fff; }
.alg-mobile-toggle { display: none; border: 0; background: transparent; color: var(--alg-ink); font-size: 26px; }

.alg-mobile-panel {
    position: fixed;
    top: 80px;
    left: 8px;
    right: 8px;
    z-index: 90;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(240, 245, 247, .97);
    backdrop-filter: blur(25px);
    box-shadow: var(--alg-shadow);
}
.alg-mobile-panel.is-open { display: flex; }
.alg-mobile-panel a { font-size: 18px; }

.alg-main { padding-top: 80px; overflow: hidden; }
.alg-hero {
    position: relative;
    min-height: 405px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 5px 5px, rgba(16,52,64,.11) 1.2px, transparent 1.4px) 0 0 / 16px 16px,
        linear-gradient(110deg, #fff 0%, #f7fcfd 54%, #d8f5fb 100%);
}
.alg-hero--home {
    min-height: 680px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,.26) 100%),
        url('/alg/media/HeroSection-bg-image.0yooao0jizn9r.png') center right / cover no-repeat;
}
.alg-hero h1,
.alg-page-title {
    margin: 0;
    font-family: 'Transducer', 'Open Sauce Two', Arial, sans-serif;
    font-size: clamp(42px, 7vw, 96px);
    line-height: .96;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-weight: 400;
}
.alg-hero h1 span { color: var(--alg-blue); }
.alg-hero p {
    max-width: 640px;
    margin: 22px 0 0;
    color: var(--alg-muted);
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.38;
}
.alg-hero .alg-btn { margin-top: 34px; }

.alg-section { padding: 96px 0; }
.alg-section--soft { background: #f6fbfc; }
.alg-section-kicker {
    margin: 0 0 18px;
    color: var(--alg-blue);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}
.alg-section-title {
    margin: 0 0 24px;
    font-family: 'Transducer', 'Open Sauce Two', Arial, sans-serif;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 400;
}
.alg-section-intro {
    max-width: 740px;
    margin: 0 0 44px;
    color: var(--alg-muted);
    font-size: 18px;
    line-height: 1.55;
}
.alg-grid { display: grid; gap: 28px; }
.alg-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.alg-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.alg-card {
    border: 1px solid var(--alg-border);
    border-radius: var(--alg-radius);
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(16,52,64,.045);
}
.alg-card h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.15; }
.alg-card p { margin: 0; color: var(--alg-muted); line-height: 1.55; }
.alg-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--alg-muted); line-height: 1.75; }
.alg-stat { text-align: center; }
.alg-stat strong { display: block; font-size: 46px; color: var(--alg-blue); letter-spacing: -0.06em; }
.alg-stat span { display: block; margin-top: 8px; color: var(--alg-muted); }

/* News */
.news-hero { min-height: 460px; align-items: center; }
.news-hero .alg-shell { padding-top: 20px; }
.news-search {
    margin-top: 72px;
    width: min(640px, 100%);
    position: relative;
}
.news-search input {
    width: 100%;
    height: 52px;
    border: 1px solid var(--alg-border);
    border-radius: 6px;
    background: #f4f9fb;
    padding: 0 18px 0 48px;
    color: var(--alg-ink);
    outline: 0;
}
.news-search::before {
    content: '⌕';
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--alg-muted);
    font-size: 20px;
}
.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 355px;
    gap: 40px;
    padding: 96px 0 110px;
}
.news-feature-image,
.news-card-image {
    background: #cff3f8;
    border-radius: 14px;
}
.news-feature-image { height: 535px; }
.news-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 30px 0 12px;
    color: var(--alg-muted);
    font-size: 13px;
}
.news-feature-title {
    max-width: 750px;
    margin: 0;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}
.news-excerpt { max-width: 800px; margin: 26px 0 0; color: var(--alg-muted); font-size: 16px; line-height: 1.55; }
.news-feature .alg-btn { margin-top: 34px; }
.news-sidebar { display: flex; flex-direction: column; gap: 34px; }
.news-side-card {
    border-radius: 14px;
    background: #eef4f7;
    padding: 28px 24px;
}
.news-side-card h2 {
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #d7e4e9;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 400;
}
.news-topic,
.news-kit-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--alg-ink);
    border-radius: 6px;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
}
.news-topic.is-active,
.news-topic:hover { background: #fff; }
.news-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px 40px;
    margin-top: 66px;
}
.news-card-image { height: 255px; margin-bottom: 26px; }
.news-card h3 { margin: 0; font-size: 24px; line-height: 1.1; letter-spacing: -0.04em; }
.news-card .news-excerpt { margin-top: 24px; font-size: 14px; }
.news-card .alg-btn { margin-top: 28px; }
.news-empty { display: none; grid-column: 1 / -1; padding: 24px; border-radius: 14px; background: #f4f9fb; }

/* Team / Careers */
.team-card { padding: 0; overflow: hidden; }
.team-card__image { height: 260px; background: #d2f1f7; display: flex; align-items: flex-end; justify-content: center; }
.team-card__image img { height: 100%; width: 100%; object-fit: cover; }
.team-card__body { padding: 26px; }
.team-card__role { color: var(--alg-blue); font-size: 13px; margin-bottom: 8px; }
.team-card__name { margin: 0 0 14px; font-size: 24px; }
.management-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.management-person { display: flex; gap: 14px; align-items: center; padding: 18px; border-radius: 14px; border: 1px solid var(--alg-border); background: #fff; }
.management-person__initials { width: 44px; height: 44px; border-radius: 50%; background: #e5f7fb; color: var(--alg-blue); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.management-person__name { font-weight: 700; }
.management-person__role { color: var(--alg-muted); font-size: 13px; margin-top: 3px; }
.vacancy-empty { max-width: 720px; padding: 48px; border-radius: 20px; background: #eef8fa; }
.vacancy-empty h2 { margin-top: 0; font-size: 36px; letter-spacing: -0.04em; }

.alg-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ecfbfd 0%, #45b7cf 73%, #2fa4bc 100%);
    padding: 105px 0 34px;
}
.alg-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/alg/media/Footer-bg-image.0a1djcex3nw8r.png') center bottom / cover no-repeat;
    opacity: .9;
    pointer-events: none;
}
.alg-footer__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr .6fr .7fr; gap: 80px; min-height: 310px; }
.alg-footer__logo { width: 220px; }
.alg-footer p { color: var(--alg-ink); max-width: 360px; line-height: 1.55; }
.alg-footer h3 { margin: 0 0 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.alg-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 14px; }
.alg-footer__bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 80px; font-size: 12px; }
.alg-footer__bottom-links { display: flex; gap: 40px; }
.alg-linkedin { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; border-radius: 4px; background: rgba(255,255,255,.75); padding: 8px 12px; font-weight: 700; font-size: 13px; }

@media (max-width: 1050px) {
    .alg-shell { width: min(100% - 40px, 900px); }
    .alg-nav, .alg-header .alg-btn { display: none; }
    .alg-mobile-toggle { display: block; }
    .news-layout { grid-template-columns: 1fr; }
    .news-sidebar { grid-row: auto; }
    .news-grid, .alg-grid--3, .alg-grid--4, .management-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .alg-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
    .alg-shell { width: min(100% - 28px, 560px); }
    .alg-header { height: 58px; padding-inline: 14px; }
    .alg-logo img { width: 155px; }
    .alg-main { padding-top: 70px; }
    .alg-hero, .news-hero { min-height: 360px; }
    .alg-hero--home { min-height: 560px; }
    .alg-section { padding: 64px 0; }
    .news-layout { padding: 56px 0 70px; }
    .news-feature-image { height: 280px; }
    .news-grid, .alg-grid--3, .alg-grid--4, .management-list { grid-template-columns: 1fr; gap: 34px; }
    .news-card-image { height: 210px; }
    .alg-footer { padding-top: 70px; }
    .alg-footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .alg-footer__bottom { align-items: flex-start; flex-direction: column; margin-top: 50px; }
    .alg-footer__bottom-links { gap: 20px; flex-wrap: wrap; }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Additional ALG page styles */
.alg-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-hero-shell { padding: 16px 0 54px; }
.home-hero-card {
    min-height: 620px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 64, 82, .94) 0%, rgba(4, 89, 112, .72) 41%, rgba(4, 88, 111, .18) 100%),
        url('/alg/media/HeroSection-bg-image.0yooao0jizn9r.png') center right / cover no-repeat;
}
.home-hero-copy { width: min(680px, 100%); padding: clamp(40px, 7vw, 86px); color: #fff; }
.home-hero-copy h1 {
    margin: 0;
    font-family: 'Transducer', 'Open Sauce Two', Arial, sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-weight: 400;
}
.home-hero-copy p { margin: 28px 0 0; max-width: 610px; font-size: clamp(18px, 2vw, 26px); line-height: 1.26; }
.brand-strip { padding: 28px 0 54px; overflow: hidden; background: #fff; }
.brand-track { display: flex; align-items: center; gap: clamp(36px, 6vw, 90px); min-width: max-content; animation: alg-logo-scroll 55s linear infinite; }
.brand-track img { max-width: 130px; max-height: 42px; filter: grayscale(1); opacity: .62; }
@keyframes alg-logo-scroll { from { transform: translateX(0); } to { transform: translateX(-35%); } }
.split-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(40px, 7vw, 100px); align-items: start; }
.metric-grid { align-items: stretch; }
.metric-grid .alg-stat { border: 1px solid var(--alg-border); border-radius: var(--alg-radius); background: #fff; padding: 30px 18px; }
.two-column-text { color: var(--alg-muted); font-size: 18px; line-height: 1.65; }
.two-column-text p { margin: 0 0 18px; }
.process-grid { margin-top: 44px; }
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--alg-border); border-radius: 18px; overflow: hidden; background: #fff; }
.comparison-table > div { padding: 20px 24px; border-bottom: 1px solid var(--alg-border); }
.comparison-table > div:nth-child(2n+1) { border-right: 1px solid var(--alg-border); color: var(--alg-muted); }
.comparison-table > div:nth-last-child(-n+2) { border-bottom: 0; }
.comparison-head { background: #eef8fa; color: var(--alg-ink) !important; font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
.cta-band { background: var(--alg-ink); color: #fff; text-align: center; }
.cta-band h2 { margin: 0 auto 28px; max-width: 980px; font-family: 'Transducer', 'Open Sauce Two', Arial, sans-serif; font-size: clamp(34px, 5vw, 64px); line-height: 1; letter-spacing: -0.045em; font-weight: 400; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0 auto 28px; max-width: 680px; }
.cta-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.alg-btn--ghost { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); }
.alg-btn--ghost:hover { background: rgba(255,255,255,.22); }
.service-grid .alg-card p { margin-top: 18px; }
.mt-lg { margin-top: 44px; }
.quote-section { background: #f6fbfc; }
.quote-section blockquote { margin: 0; max-width: 940px; }
.quote-section p { margin: 0 0 28px; font-family: 'Transducer', 'Open Sauce Two', Arial, sans-serif; font-size: clamp(34px, 5vw, 68px); line-height: 1.05; letter-spacing: -0.045em; }
.quote-section cite { font-style: normal; font-weight: 700; }
.quote-section cite span { color: var(--alg-muted); font-weight: 400; }
.network-region-grid .alg-card p + p { margin-top: 14px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); gap: 70px; align-items: start; }
.contact-cards { grid-template-columns: 1fr; gap: 18px; }
.contact-form { display: grid; gap: 16px; border: 1px solid var(--alg-border); border-radius: 20px; padding: 30px; background: #f7fbfc; }
.contact-form label { display: grid; gap: 7px; color: var(--alg-ink); font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--alg-border); border-radius: 8px; padding: 13px 14px; background: #fff; color: var(--alg-ink); outline: 0; }
.contact-form textarea { resize: vertical; }

@media (max-width: 1050px) {
    .split-section, .contact-layout { grid-template-columns: 1fr; }
    .alg-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-hero-card { min-height: 540px; }
}

@media (max-width: 700px) {
    .home-hero-shell { padding-top: 10px; }
    .home-hero-card { min-height: 510px; border-radius: 16px; background-position: center; }
    .home-hero-copy { padding: 34px 24px; }
    .brand-track { animation-duration: 38s; }
    .brand-track img { max-width: 105px; }
    .alg-grid--2 { grid-template-columns: 1fr; }
    .comparison-table { grid-template-columns: 1fr; }
    .comparison-table > div:nth-child(2n+1) { border-right: 0; }
    .comparison-table > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--alg-border); }
    .comparison-table > div:last-child { border-bottom: 0; }
    .contact-form { padding: 22px; }
}


.form-status,
.form-errors {
    margin-bottom: 18px;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
}
.form-status {
    background: #eaf8f3;
    color: #176349;
}
.form-errors {
    background: #fff2f0;
    color: #9b2c20;
}
.form-errors p { margin: 0; }


/* Scrape-alignment patch */
.alg-hero .alg-section-kicker { margin-bottom: 16px; }
.senior-management-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.senior-management-grid .team-card { grid-column: span 2; }
.senior-management-grid .team-card:nth-child(4) { grid-column-start: 2; }
.senior-management-grid .team-card__image { height: 355px; }
.leadership-careers-cta .alg-section-kicker { color: var(--alg-blue); }
.network-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 34px; }
.network-tab { display: inline-flex; min-height: 38px; align-items: center; border-radius: 999px; border: 1px solid var(--alg-border); background: #fff; color: var(--alg-ink); padding: 0 16px; font-size: 14px; }
.network-tab.is-active, .network-tab:hover { background: var(--alg-blue); color: #fff; border-color: var(--alg-blue); }
.network-directory { display: grid; gap: 28px; }
.network-region-card { border: 1px solid var(--alg-border); border-radius: 20px; background: #fff; padding: 28px; box-shadow: 0 10px 35px rgba(16,52,64,.045); scroll-margin-top: 110px; }
.network-region-card header { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--alg-border); }
.network-region-card h3 { margin: 0; font-family: 'Transducer', 'Open Sauce Two', Arial, sans-serif; font-size: clamp(28px, 4vw, 44px); line-height: 1; letter-spacing: -0.045em; }
.network-region-card header span { color: var(--alg-blue); font-weight: 700; }
.network-country-grid { columns: 3 280px; column-gap: 22px; }
.network-country { break-inside: avoid; margin: 0 0 14px; border: 1px solid var(--alg-border); border-radius: 14px; background: #f8fcfd; overflow: hidden; }
.network-country summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; font-weight: 700; }
.network-country summary small { min-width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #e5f7fb; color: var(--alg-blue); }
.network-country ul { margin: 0; padding: 0 16px 14px; list-style: none; display: grid; gap: 8px; color: var(--alg-muted); }
.network-country li { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(219,232,237,.8); padding-top: 8px; }
.network-country li strong { color: var(--alg-ink); letter-spacing: .06em; }
.network-no-results { display: none; margin: 30px 0 0; color: var(--alg-muted); text-align: center; }
.legal-copy { max-width: 860px; color: var(--alg-muted); font-size: 18px; line-height: 1.7; }
@media (max-width: 1050px) {
    .senior-management-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .senior-management-grid .team-card, .senior-management-grid .team-card:nth-child(4) { grid-column: auto; }
}
@media (max-width: 700px) {
    .senior-management-grid { grid-template-columns: 1fr; }
    .network-region-card { padding: 20px; }
    .network-region-card header { flex-direction: column; align-items: flex-start; }
    .network-country-grid { columns: 1; }
}

/* CMS content mappings: partners, employees, posts and jobs */
.global-partners { padding-top: 28px; }
.partner-region { margin-top: 42px; }
.partner-region__header { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--alg-border); }
.partner-region__header h3 { margin: 0; font-size: 28px; }
.partner-region__header span { color: var(--alg-blue); font-weight: 700; }
.partner-logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.partner-logo-card { min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; border: 1px solid var(--alg-border); border-radius: 16px; background: #fff; padding: 22px; text-align: center; }
.partner-logo-card a { min-height: 70px; width: 100%; display: flex; align-items: center; justify-content: center; }
.partner-logo-card img { max-width: 150px; max-height: 65px; object-fit: contain; }
.partner-logo-card span { color: var(--alg-muted); font-size: 13px; }
.team-card__initials { width: 116px; height: 116px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: var(--alg-blue); font-size: 38px; font-weight: 700; }
.management-person__photo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; background: #d2f1f7; }
.management-person__region, .content-region { margin-top: 5px; color: var(--alg-muted); font-size: 13px; }
.job-grid { align-items: stretch; }
.job-card { display: flex; flex-direction: column; }
.job-card h2 { margin: 14px 0 10px; font-size: 28px; line-height: 1.1; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-card__meta span { border-radius: 999px; background: #e9f7fa; color: var(--alg-blue); padding: 7px 10px; font-size: 12px; font-weight: 700; }
.job-card__location { color: var(--alg-blue); font-weight: 700; }
.job-card__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: auto; padding-top: 24px; }
.alg-text-link { color: var(--alg-blue); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.content-detail-hero { min-height: 390px; }
.content-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 70px; align-items: start; }
.content-detail-copy { max-width: 850px; }
.content-detail-lead { margin-top: 0; font-size: 22px; line-height: 1.5; color: var(--alg-ink); }
.content-detail-image { width: 100%; max-height: 520px; object-fit: cover; border-radius: 18px; margin-bottom: 34px; }
.content-detail-aside { display: grid; gap: 20px; border: 1px solid var(--alg-border); border-radius: 16px; background: #f7fbfc; padding: 24px; }
.content-detail-aside p { margin: 0; color: var(--alg-muted); line-height: 1.6; }
.rich-copy { color: var(--alg-muted); line-height: 1.7; }
.rich-copy > :first-child { margin-top: 0; }
.rich-copy img { max-width: 100%; height: auto; }
.news-feature-image, .news-card-image { background-size: cover; background-position: center; }

@media (max-width: 1050px) {
    .partner-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .content-detail-layout { grid-template-columns: 1fr; gap: 38px; }
    .content-detail-aside { max-width: 520px; }
}

@media (max-width: 700px) {
    .partner-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-region__header { align-items: flex-start; flex-direction: column; }
    .partner-logo-card { min-height: 130px; padding: 16px; }
    .content-detail-lead { font-size: 19px; }
}
