:root {
    --ink: #13171F;
    --cream: #F6F2E9;
    --gold: #AC9055;
    --text: #4A4D53;
    --plum: #432f4c;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Archivo", Arial, sans-serif;
    --shell: min(1378px, calc(100vw - 72px));
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--cream);
    color: #000;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open {
    overflow: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
.shell {
    width: var(--shell);
    margin-inline: auto;
	padding: 0 15px;
}
.text-link:after {
    content: "";
    width: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s ease;
}
a.text-link.dark::after {
    width: 60%;
}
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}
.skip-link:focus {
    clip: auto;
    clip-path: none;
    width: auto;
    height: auto;
    z-index: 9999;
    background: #fff;
    color: #000;
    padding: 10px;
    top: 10px;
    left: 10px;
}
.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 30;
    color: #fff;
    transition: 0.25s;
}
.site-header.scrolled {
    position: fixed;
    background: rgba(17, 21, 29, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px rgba(255, 255, 255, 0.07);
}
.header-inner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.scrolled .header-inner {
    height: 82px;
}
.brand,
.brand-wrap .custom-logo-link {
    width: 355px;
    max-width: 35vw;
    display: block;
}
.brand img {
    width: 100%;
}
.custom-logo {
    max-height: 70px;
    width: auto;
}
.primary-nav .be-menu,
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 45px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.primary-nav li {
    position: relative;
}
.primary-nav a {
    font-weight: 600;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1%;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
}
.primary-nav li.current-menu-item:after,
.primary-nav li:first-child:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--gold);
}
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 10px;
}
.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 27px;
    height: 2px;
    background: #fff;
    margin: 5px;
}
.hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    height: 855px;
    overflow: hidden;
}
.hero-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}
.hero-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 50% 55%;
    align-items: center;
    position: relative;
    z-index: 3;
}
.hero-copy {
    padding-top: 68px;
    max-width: 730px;
}
.hero-copy h1 {
    font: 400 88px/1.12 var(--serif);
    letter-spacing: -0.025em;
    margin: 0 0 28px;
    color: #F6F2E9;
}
.hero-copy h1 em {
    color: var(--gold);
    font-weight: 600;
}
.hero-copy p {
    color: #b7bac0;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.72;
    margin: 0 0 34px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 44px;
}
.button,
.text-link {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 15px;
}
.button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 35px;
}
.button-gold {
    background: var(--gold);
    color: white;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
}
.button-gold:hover {
    color: var(--gold);
    background: transparent;
}
.primary-nav li a {
    transition: all 0.4s ease;
    color: #F6F2E9CC;
}
.primary-nav li.current-menu-item a {
    color: #fff;
}
.primary-nav li:hover a {
    color: var(--gold);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 0;
    position: relative;
}
.text-link span,
.button span {
    font-size: 17px;
    letter-spacing: 0;
}
.text-link.light {
    color: #fff;
}
.text-link.dark {
    color: #000;
}
.hero-portrait {
    height: 100%;
    align-self: end;
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-size:
        auto 86%,
        auto 86%;
    background-position: right bottom;
    position: relative;
}
.hero-portrait:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 21, 29, 0.12), transparent 35%);
}
.featured-strip {
    padding: 58px 0 78px;
}
section.about-section .about_bottom.shell h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 45px;
    line-height: 100%;
    color: #000;
    margin: 12px 0px;
}
.eyebrow {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
}
.eyebrow.centered {
    text-align: center;
}

.media-logos span {
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    line-height: 0.8;
}
.media-logos .serif-logo {
    font-family: Georgia, serif;
    font-size: 40px;
}
.media-logos .espn {
    font-style: italic;
    font-size: 42px;
    letter-spacing: -0.08em;
}
.about-section {
    padding: 44px 0 114px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}
.about-photo-wrap {
    position: relative;
    border: 1px solid #d6cec0;
    padding: 10px 10px 10px 10px;
}
.about-photo {
    aspect-ratio: 1.17/1;
    object-fit: cover;
    width: 100%;
}
.proof-bar {
    position: absolute;
    left: 10px;
    right: 18%;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(90deg, #3c2c3a, #4b2e55);
    color: white;
    padding: 22px 26px;
	bottom:10px;
}
.proof-bar div {
    padding: 0 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.proof-bar div:first-child {
    padding-left: 0;
}
.proof-bar div:last-child {
    border: 0;
    padding-right: 0;
}
.proof-bar strong {
    display: block;
    font: 600 43px/1 var(--serif);
}
.proof-bar span {
    display: block;
    margin-top: 9px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 10px;
    color: #d7d2da;
    line-height: 1.35;
}
.about-copy {
    padding-left: 10px;
}
.about-copy h2,
.aviation-copy h2,
.articles-section h2,
.ventures-section h2,
.page-heading h1 {
    font-family: var(--serif);
    font-weight: 400;
}
.about-copy h2 {
    font-size: 45px;
    line-height: 1.08;
    margin: 0 0 25px;
    max-width: 690px;
	color:#000;
}
.body-copy {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}
.body-copy p {
    margin: 0 0 18px;
}
.about-copy .text-link {
    margin-top: 8px;
}
.ventures-section {
    background: #13171F;
    color: white;
    padding: 118px 0 0;
    overflow: hidden;
}
.ventures-section h2 {
    font-size: 45px;
    line-height: 47px;
    margin: 0 0 34px;
}
.venture-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 0 0 74px;
}
.ventures-section .venture-tabs button{
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.ventures-section .venture-tabs button span.status_bar {
    font-size: 15px;
    color: #535963;
    display: inline-block;
    text-align: right;
    margin-left: auto;
}
.ventures-section .venture-tabs button:hover span.status_bar,
.ventures-section .venture-tabs button.active span.status_bar {
    color: #ffffff;
    border: 1px solid #e7e7e7;
    padding: 2px 5px;
	border-bottom: 0px;
}
.ventures-section .venture-tabs button.active, .ventures-section .venture-tabs button:hover{
	padding: 21px 0 0 18px;
}
.venture-tab,
.static-logos > div {
    height: 90px;
    border: 1px solid #535963;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 5px 0 18px;
    font: 700 18px var(--sans);
    cursor: pointer;
    transition: 0.2s;
}
.venture-tab:hover,
.venture-tab.active,
.static-logos > div.active {
    border-color: #e7e7e7;
    background: rgba(255, 255, 255, 0.02);
}
.venture-tab img {
    max-height: 42px;
    max-width: 90%;
    object-fit: contain;
/*     filter: grayscale(1) brightness(10); */
}
.static-logos .serif-logo {
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 500;
}
.static-logos small {
    font-size: 8px;
    letter-spacing: 0.1em;
}
.gold-text {
    color: #e09228;
}
.venture-panels {
    min-height: auto;
}
.venture-panel {
    display: none;
    grid-template-columns: 48% 52%;
    align-items: end;
    gap: 45px;
}
.venture-panel.active {
    display: grid;
}
.fallback-venture {
    display: grid;
}
.venture-copy {
    align-self: start;
    padding-top: 6px;
    max-width: 610px;
}
.venture-copy h3 {
    font: 400 25px var(--serif);
    margin: 0 0 9px;
}
.venture-copy p,
.venture-description {
    color: #aaaeb5;
    font-size: 17px;
    line-height: 31px;
}
.venture-copy .text-link {
    margin-top: 24px;
}
.venture-image {
    align-self: end;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.venture-image img {
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
    object-position: right bottom;
}
.aviation-section {
    padding: 120px 0 105px;
}
.aviation-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 74px;
    align-items: center;
}
.aviation-copy h2 {
    font-size: 45px;
    line-height: 100%;
    margin: 0 0 25px;
    color: #000;
}
.aviation-copy > p {
    color: var(--text);
    max-width: 650px;
    font-size: 17px;
    line-height: 31px;
    margin-bottom: 30px;
}
.flight-stats {
    border: 1px solid #ded5c5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 29px 22px;
    max-width: 605px;
    background: #AC905514;
}
.flight-stats div {
    padding: 0 25px;
    border-right: 1px solid #d8d0c1;
}
.flight-stats div:first-child {
    padding-left: 10px;
}
.flight-stats div:last-child {
    border: 0;
}
.flight-stats strong {
    display: block;
    font: 600 32px/100% var(--serif);
}
.flight-stats span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 10%;
    font-size: 13px;
    color: #777;
    line-height: 100%;
    margin-top: 8px;
    font-weight: 600;
}
.video-list-wrap {
    padding-top: 28px;
}
.video-list {
    border: 1px solid #d8d8d8;
    background: #fff;
}
.video-row {
    display: grid;
    grid-template-columns: 102px 1fr auto auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid #dedede;
    min-height: 88px;
}
.video-row:last-child {
    border-bottom: 0;
}
.video-thumb {
    height: 58px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-thumb i {
    width: 31px;
    height: 31px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-style: normal;
    padding-left: 2px;
}
.video-row strong {
    font-size: 17px;
    font-weight: 500;
}
.video-meta,
.video-tag {
    border: 1px solid #d4d4d4;
    padding: 4px 8px;
    font-size: 13px;
    color: #000000;
    white-space: nowrap;
    font-weight: 500;
}
.articles-section {
    padding: 0 0 128px;
}
.section-rule {
    height: 1px;
    background: #ddd6ca;
    margin-bottom: 93px;
}
.articles-section h2 {
    font-size: 45px;
    line-height: 100%;
    margin: 0 0 34px;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
}
.article-image {
    position: relative;
    display: block;
    aspect-ratio: 1.78;
    overflow: hidden;
    background: #ddd;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.source-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 24px;
    font-weight: 800;
    font-size: 13px;
    color: #164a75;
}
.article-card h3, .archive-card h2, .archive-card h3 {
    color: #4A4D53 !important;
}
.article-card h3 {
    margin-top: 11px;
}
.article-card h3 {
    font: 400 23px/33px var(--serif);
    color: #4A4D53;
    margin: 16px 0 20px;
}
.article-card .text-link {
    font-size: 12px;
}
.site-footer {
    background: var(--ink);
    color: #aeb1b7;
    padding: 105px 0 25px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr 0.75fr 1fr;
    gap: 55px;
}
.footer-brand,
.footer-brand-wrap .custom-logo-link {
    width: 320px;
    max-width: 100%;
    display: block;
    margin-bottom: 25px;
}
.footer-brand-col p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 420px;
    font-weight: 500;
}
.site-footer h3 {
    font: 600 18px var(--sans);
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 0 25px;
}
.footer-links,
.footer-links ul,
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li, .contact-list li {
    margin: 0 0 12px;
}
.footer-links a,
.contact-list a {
    font-size: 17px;
}
.footer-links a:before {
    content: "›";
    margin-right: 12px;
    color: #d3d3d3;
    font-size: 20px;
    vertical-align: -1px;
}
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.social-row a {
    width: 47px;
    height: 47px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 17px;
}
.newsletter-form input {
    width: 100%;
    background: transparent;
    border: 1px solid #464b54;
    color: #fff;
    padding: 15px 16px;
    margin-bottom: 12px;
    height: 50px;
}
.newsletter-form button {
    border: 0;
    background: var(--gold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    font-size: 12px;
    padding: 16px 29px;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid #393e46;
    margin-top: 82px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.footer-bottom i {
    display: inline-block;
    height: 13px;
    width: 1px;
    background: #4b4f55;
    margin: 0 14px;
    vertical-align: -2px;
}
.content-shell {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 70vh;
}
.page-heading {
    margin-bottom: 55px;
    max-width: 980px;
}
.page-heading h1 {
    font-size: 64px;
    line-height: 1.03;
    margin: 0;
}
.entry-hero-image {
    margin-bottom: 50px;
}
.entry-hero-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}
.entry-content {
    max-width: 850px;
    font-size: 17px;
    color: #42464c;
    line-height: 1.85;
}
.entry-content h2,
.entry-content h3 {
    font-family: var(--serif);
    color: #111;
}
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.archive-card h2 {
    font: 500 30px/1.15 var(--serif);
}
.archive-card p {
    color: var(--text);
}
.not-found {
    padding: 100px 0;
}
.not-found h1 {
    font: 500 72px var(--serif);
    margin: 0 0 20px;
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.65s,
        transform 0.65s;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.article-card .text-link, .archive-card .text-link {
    font-size: 15px;
}
.shell.about-grid .about-photo-wrap {
    position: relative;
}

.shell.about-grid .about-photo-wrap .proof-bar {
    width: 100%;
    max-width: calc(100% - 20px);
}

.ventures-section .venture-tabs button img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* .ventures-section .venture-tabs button:hover img {
    filter: unset;
} */

.ventures-section .venture-tabs button.active img {
    filter: unset;
}
.venture-tabs button#venture-tab-6>img {
    max-height: 70px;
}
.ventures-section .venture-tabs button#venture-tab-6>img {
    max-height: 60px;
    max-width: 100%;
}
.ventures-section .venture-tabs button#venture-tab-8>img {
    max-height: 70px;
    max-width: 100%;
}
.ventures-section .venture-tabs button#venture-tab-5>img {
    max-height: 50px;
    max-width: 100%;
}
@media (max-width: 1180px) {
    :root {
        --shell: min(94vw, 1100px);
    }
    .primary-nav .be-menu,
    .primary-nav ul {
        gap: 28px;
    }
    .hero-copy h1 {
        font-size: 64px;
    }
    .about-copy h2 {
        font-size: 43px;
    }
	section.about-section .about_bottom.shell h2{
    font-size: 40px;
    }
    .footer-grid {
        grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
        gap: 35px;
    }
    .proof-bar {
        right: 6%;
    }
    .static-logos > div {
        font-size: 14px;
    }
    .video-row {
        grid-template-columns: 90px 1fr auto;
    }
    .video-tag {
        display: none;
    }
}
@media (max-width: 900px) {
    :root {
        --shell: calc(100vw - 40px);
    }
    .header-inner {
        height: 88px;
    }
    .brand,
    .brand-wrap .custom-logo-link {
        max-width: 260px;
    }
    .nav-toggle {
        display: block;
    }
    .primary-nav {
        position: fixed;
        inset: 88px 0 0;
        background: rgba(17, 21, 29, 0.99);
        padding: 30px 20px;
        opacity: 0;
        visibility: hidden;
        transition: 0.2s;
    }
    .primary-nav.open {
        opacity: 1;
        visibility: visible;
    }
    .primary-nav .be-menu,
    .primary-nav ul {
        display: block;
    }
    .primary-nav li {
        border-bottom: 1px solid #2b3038;
    }
    .primary-nav a {
        font-size: 18px;
        padding: 18px 8px;
    }
    .hero {
        height: auto;
        min-height: 900px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 130px;
    }
    .hero-copy {
        padding: 0;
        max-width: 760px;
        z-index: 3;
    }
    .hero-copy h1 {
        font-size: 61px;
    }
    .hero-portrait {
        height: 540px;
        width: 100%;
        grid-row: 2;
        background-position: center bottom;
        background-size: auto 100%;
        opacity: 0.88;
    }
    .media-logos {
        /* grid-template-columns: repeat(3, 1fr); */
        row-gap: 45px;
    }
    .about-grid,
    .aviation-grid,
    .venture-panel {
        grid-template-columns: 1fr;
    }
    .venture-tabs {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 45px;
    }
    .venture-image {
        min-height: auto;
    }
    .aviation-grid {
        gap: 50px;
    }
    .article-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .article-card {
        max-width: 700px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-col {
        grid-column: 1/-1;
    }
    .archive-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 620px) {
    :root {
        --shell: calc(100vw - 32px);
    }
    .brand,
    .brand-wrap .custom-logo-link {
        max-width: 220px;
    }
    .hero {
        min-height: 780px;
    }
    .hero-copy h1 {
        font-size: 47px;
    }
    .hero-copy p {
        font-size: 15px;
    }
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }
    .hero-portrait {
        height: 430px;
    }
    .featured-strip {
        padding: 40px 0 55px;
    }
    .media-logos {
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 35px 25px;
    }
    .media-logos span {
        font-size: 22px;
    }
    .about-section {
        padding-bottom: 75px;
    }
    .about-grid {
        gap: 34px;
    }
    .about-copy {
        padding: 0;
    }
    .about-copy h2 {
        font-size: 38px;
    }
    .proof-bar {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 18px 14px;
    }
    .proof-bar div {
        padding: 0 10px;
    }
    .proof-bar strong {
        font-size: 34px;
    }
    .proof-bar span {
        font-size: 8px;
    }
    .ventures-section {
        padding-top: 80px;
    }
    .ventures-section h2 {
        font-size: 40px;
        line-height: 100%;
    }
    .venture-tabs {
        grid-template-columns: 1fr 1fr;
    }
    .venture-tabs > :last-child {
/*         grid-column: 1/-1; */
    }
    .aviation-section {
        padding: 80px 0;
    }
    .aviation-copy h2,
    .articles-section h2 {
        font-size: 40px;
    }
    .flight-stats {
        padding: 16px 8px;
    }
    .flight-stats div {
        padding: 0 10px;
    }
    .flight-stats strong {
        font-size: 33px;
    }
    .video-row {
        grid-template-columns: 75px 1fr;
        padding: 12px;
        gap: 12px;
    }
    .video-meta {
        display: none;
    }
    .video-thumb {
        height: 48px;
    }
    .section-rule {
        margin-bottom: 65px;
    }
    .site-footer {
        padding-top: 75px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand-col {
        grid-column: auto;
    }
    .footer-bottom {
        display: block;
        line-height: 2;
    }
    .page-heading h1 {
        font-size: 48px;
    }
    .content-shell {
        padding-top: 130px;
    }
    .archive-grid {
        grid-template-columns: 1fr;
    }
}

body:not(.home) .content-shell {
    padding-top: 90px;
}
.site-footer .be-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .be-menu li {
    margin: 0 0 14px;
}
.site-footer .be-menu a {
    font-size: 14px;
}
.site-footer .be-menu a:before {
    content: "›";
    margin-right: 12px;
    color: #d3d3d3;
    font-size: 20px;
    vertical-align: -1px;
}
body:not(.home) .primary-nav li:first-child:not(.current-menu-item):after {
    display: none;
}



.video-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}
.video-popup.active {
    display: flex;
}
.video-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}
.video-popup-content {
    position: relative;
    width: min(900px, 90%);
    z-index: 2;
}
.video-popup-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-popup-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.video-popup-close {
    position: absolute;
    top: -45px;
    right: 0;
    border: 0;
    background: none;
    color: #fff;
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
}
body.video-popup-open {
    overflow: hidden;
}
section.about-section .about_bottom.shell {
    background-color: #AC905514;
    padding: 77px 40px;
    border: solid 1px #AC905533;
    margin-top: 115px;
    text-align: center;
    width: 100%;
	max-width: 1348px;
}
footer .shell ul.contact-list li a{
    display: flex;
    gap: 13px;
    align-items: center;
}



.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.newsletter-form .wpcf7-not-valid-tip {
    color: #e57373;
    font-size: 11px;
    margin-top: 4px;
}
.newsletter-form input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 15px 16px;
    margin: 0 0 12px;
    background: transparent;
    border: 1px solid #464b54;
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    outline: none;
}
.newsletter-form input[type="email"]::placeholder {
    color: #aeb1b7;
    opacity: 1;
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--gold);
}
.newsletter-form input[type="submit"] {
    border: 0;
    background: var(--gold);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 29px;
    min-height: 50px;
    cursor: pointer;
    transition: background .2s ease;
    max-width: max-content;
}
.newsletter-form input[type="submit"]:hover {
    background: #9d793d;
}
.newsletter-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.newsletter-form .wpcf7-response-output {
    margin: 15px 0 0;
    padding: 8px 0;
    border: 0;
    color: #aeb1b7;
    font-size: 12px;
}
.newsletter-form p {
    margin: 0;
}
.newsletter-form .wpcf7-spinner {
    margin: 10px 0 0 10px;
}
.newsletter-submit-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.newsletter-submit-wrap .newsletter-arrow {
    position: absolute;
    right: 20px;
    pointer-events: none;
    top:20px;
}

.newsletter-submit-wrap input[type="submit"] {
    padding-right: 50px;
}

form div.newsletter-form p br{
    display: none;
}
.hero:before {
    content: "";
    position: absolute;
    background-image: url(https://brendanegan.com/wp-content/uploads/2026/08/Group-38-1-1.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    height: 100%;
    width: 100%;
}
.media-logos-wrap:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    max-width: 280px;
    height: 100%;
    width: 100%;
    opacity: 1;
    background: linear-gradient(90deg, rgba(246, 242, 233, 0) 0%, rgba(246, 242, 233, 0.8) 58.83%, #F6F2E9 100%);
}
.featured-strip .media-logos-wrap {
    position: relative;
    max-width: 1348px;
    width: 100%;
    overflow: hidden;
}

.media-logos>span {
    min-width: 180px;
}
.media-logos-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    max-width: 350px;
    height: 100%;
    width: 100%;
    opacity: 1;
    background: linear-gradient(280deg, rgba(246, 242, 233, 0) 0%, rgba(246, 242, 233, 0.8) 58.83%, #F6F2E9 100%);
    z-index: 9;
}
.media-logos {
    display: flex;
    align-items: center;
    gap: 34px;
    color: #c9c5bd;
    margin-top: 28px;
    position: relative;
}

.media-logos span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
section.featured-strip>.shell>div#mediaSlider {
    overflow: hidden;
}
section.featured-strip>.shell>div#mediaSlider span {
    min-width: 180px;
}


/* =========================================================
   PREMIUM MICRO-ANIMATIONS
   ========================================================= */


a,
button,
.primary-nav li,
.article-card,
.press-card,
.venture-tab,
.static-logos > div,
.social-row a,
.footer-links a,
.footer-bottom a,
.contact-list a {
    -webkit-tap-highlight-color: transparent;
}
@keyframes beHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy h1 {
    animation: beHeroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy p {
    animation: beHeroFadeUp 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
    animation: beHeroFadeUp 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-portrait {
    animation: beHeroPortrait 1.2s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes beHeroPortrait {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 0.88;
        transform: translateX(0);
    }
}
.button-gold {
    position: relative;
    overflow: hidden;
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.button-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.button-gold span,
.button-gold svg,
.button-gold i {
    position: relative;
    z-index: 2;
}

.button-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.button-gold:hover::before {
    transform: translateX(0);
}

.button-gold:hover span,
.button-gold:hover svg,
.button-gold:hover i {
    color: var(--gold);
}
.button svg,
.button i,
.text-link svg,
.text-link i {
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.button:hover svg,
.button:hover i,
.text-link:hover svg,
.text-link:hover i {
    transform: translateX(5px);
}
.primary-nav li::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateX(50%);
    transition: width 0.4s ease;
}

/* Current item remains visible */
.primary-nav li.current-menu-item::after,
.primary-nav li:first-child::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* Hover animation */
.primary-nav li:hover::after {
    width: 100%;
}
@keyframes beFeaturedFloat {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-8px);
    }

    100% {
        transform: translateX(0);
    }
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(2px);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.about-section .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.ventures-section .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.aviation-section .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.article-grid .article-card:nth-child(2) {
    transition-delay: 0.08s;
}

.article-grid .article-card:nth-child(3) {
    transition-delay: 0.16s;
}
.about-copy .text-link,
.article-card .text-link,
.archive-card .text-link,
.venture-copy .text-link {
    position: relative;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.about-copy .text-link::after,
.article-card .text-link::after,
.archive-card .text-link::after,
.venture-copy .text-link::after {
    transform: scaleX(0.45);
    transform-origin: left center;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.4s ease;
}

.about-copy .text-link:hover,
.article-card .text-link:hover,
.archive-card .text-link:hover,
.venture-copy .text-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.about-copy .text-link:hover::after,
.article-card .text-link:hover::after,
.archive-card .text-link:hover::after,
.venture-copy .text-link:hover::after {
    transform: scaleX(1);
}

.venture-tab img,
.static-logos img,
.static-logos > div img {
    filter: grayscale(1);
    opacity: 0.65;

    transition:
        filter 0.5s ease,
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
/* 	min-height: 42px; */
}

.venture-tab:hover img,
.venture-tab.active img,
.static-logos > div:hover img,
.static-logos > div.active img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}
.venture-tab,
.static-logos > div {
    transition:
        border-color 0.4s ease,
        background-color 0.4s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.venture-tab:hover,
.static-logos > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.venture-copy .text-link {
    overflow: hidden;
}

.venture-copy .text-link span {
    transition:
        color 0.3s ease,
        transform 0.35s ease;
}

.venture-copy .text-link:hover span {
    transform: translateX(3px);
}
.video-row {
    position: relative;
    transition:
        background-color 0.35s ease,
        padding-left 0.35s ease;
}

.video-row:hover {
    background: rgba(172, 144, 85, 0.06);
    padding-left: 24px;
}

.video-thumb {
    overflow: hidden;
}

.video-thumb i {
    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
}

.video-row:hover .video-thumb i {
    transform: scale(1.12);
    background: rgba(255, 255, 255, 0.08);
}
.video-popup {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-overlay {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-popup.active .video-popup-overlay {
    opacity: 1;
}

.video-popup-content {
    opacity: 0;
    transform: translateY(20px) scale(0.98);

    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-popup.active .video-popup-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.video-popup-close {
    transition:
        color 0.25s ease,
        transform 0.3s ease;
}

.video-popup-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}
.article-card {
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

.article-card:hover {
    transform: translateY(-6px);
}

.article-card .article-image {
    overflow: hidden;
}

.article-card .article-image img {
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.045);
}

.article-card h3 a {
    transition: color 0.3s ease;
}

.article-card:hover h3 a {
    color: var(--gold);
}
.social-row a {
    position: relative;
    overflow: hidden;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.social-row a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(105%);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-row a > * {
    position: relative;
    z-index: 1;
}

.social-row a:hover {
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-4px);
}

.social-row a:hover::before {
    transform: translateY(0);
}
.footer-links a,
.contact-list a,
.footer-bottom a {
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}
.social-row a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(5513%) hue-rotate(67deg) brightness(101%) contrast(95%);
}
.footer-links a:hover,
.contact-list a:hover,
.footer-bottom a:hover {
    color: var(--gold);
}

.footer-links a:hover {
    padding-left: 4px;
}
.footer-bottom a {
    position: relative;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--gold);

    transform: scaleX(0);
    transform-origin: right;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.newsletter-form input[type="submit"] {
    position: relative;
    transition:
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
    border: 1px solid var(--gold);
}

.newsletter-form input[type="submit"]:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.newsletter-submit-wrap .newsletter-arrow {
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.newsletter-submit-wrap:hover .newsletter-arrow {
    transform: translateX(4px);
}
.press-card {
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(17, 21, 29, 0.10);
}

.press-card-content .text-link {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.about-bio-image {
    overflow: hidden;
}

.about-bio-image img {
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-bio-image:hover img {
    transform: scale(1.035);
}
.page-hero-inner {
    animation:
        beHeroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.venture-image img {
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.venture-panel.active .venture-image img {
    animation: bePortfolioImageIn 0.7s ease both;
}

@keyframes bePortfolioImageIn {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 767px) {

    .hero-copy h1 {
        animation-duration: 0.7s;
    }

    .hero-copy p {
        animation-delay: 0.1s;
    }

    .hero-actions {
        animation-delay: 0.18s;
    }

    .hero-portrait {
        animation-duration: 0.9s;
    }

    .article-card:hover {
        transform: translateY(-3px);
    }

    .video-row:hover {
        padding-left: 12px;
    }

    .venture-tab:hover,
    .static-logos > div:hover {
        transform: none;
    }

    .social-row a:hover {
        transform: translateY(-2px);
    }
	.ventures-section .venture-tabs button span.status_bar {
    font-size: 13px;
}
}
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}


.button-gold:hover span img {
   filter: brightness(0) saturate(100%) invert(67%) sepia(7%) saturate(2361%) hue-rotate(2deg) brightness(86%) contrast(86%);;
}

.text-link:hover {
    color: var(--gold);
}

.text-link:hover::after {
    width: 100%;
}

.text-link.light {
    transition: all 0.4s ease;
}
.text-link.light:hover span img , a.text-link:hover span img{
    filter: brightness(0) saturate(100%) invert(67%) sepia(7%) saturate(2361%) hue-rotate(2deg) brightness(86%) contrast(86%);
}

a.text-link.dark:hover::after {
    width: 100%;
}

.primary-nav li {
    transition: all 0.4s ease;
}

.primary-nav li.current-menu-item a {
    color: var(--gold);
}

.primary-nav li.current-menu-item a::after {
    width: 100% !important;
}

.primary-nav li.current-menu-item::after {
    width: 100%;
}
.text-link.light:hover img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(7%) saturate(2361%) hue-rotate(2deg) brightness(86%) contrast(86%);
}
 
/* end animation css  */

/* Mobile */
@media (max-width: 768px) {
    .media-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 20px;
    }

    .media-logos img {
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    .media-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .media-logos span,
    .media-logos img,
    .media-logos::after {
        animation: none !important;
        transition: none !important;
    }

    .media-logos span {
        opacity: 1;
        transform: none;
    }
}


section.featured-strip .slick-track{
    gap: 30px !important;
    display: flex;
    align-items: center;
}

.aviation-section .video-list a.video-row span.video-meta{
    display: flex;
    gap: 4px;
    align-items: center;
}
@media(max-width:1399px){
	.proof-bar strong {
    font: 600 35px/1 var(--serif);
}
}
@media(max-width:1365px){
	.primary-nav .be-menu, .primary-nav ul {
    gap: 35px;

}
	.primary-nav a {
    font-size: 16px;
}
	.hero-copy h1 {
    font: 400 62px/1.12 var(--serif);
}
	.about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
	.about-copy h2 {
    font-size: 38px;
}
	.aviation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}
	.site-footer h3 {
    font: 600 17px var(--sans);
}
.footer-grid {
	    grid-template-columns: 1.05fr 0.55fr 0.75fr 1fr;
    gap: 35px;
}
	.flight-stats span {
    letter-spacing: 7%;
}
	.flight-stats div {
    padding: 0 16px;
}
	.aviation-copy h2 {
    font-size: 38px;
}
	.flight-stats {
    padding: 18px 22px;
}
}
@media(max-width:1279px){
	.primary-nav .be-menu, .primary-nav ul {
    gap: 30px;

}
	.primary-nav a {
    font-size: 15px;
}
	.hero {
    height: 705px;
}
	.article-grid {
    gap: 25px;
}
	.article-card h3 {
    font: 400 20px/29px var(--serif);
    margin: 16px 0 20px;
}
}
@media(max-width:1199px){
	.articles-section {
    padding: 0 0 60px;
}
	.about-copy h2 {
    font-size: 30px;
}
	.aviation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
	.primary-nav .be-menu, .primary-nav ul {
    gap: 20px;
}
	.brand, .brand-wrap .custom-logo-link {
    width: 100%;
    max-width: 100%;
    display: block;
}
	.brand-wrap {
    max-width: 290px;
    width: 100%;
}
	.hero-copy h1 {
    font: 400 50px/1.12 var(--serif);
}
	.hero {
    height: 625px;
}
	.button {
    gap: 12px;
    padding: 15px 20px;
}
	.hero-actions {
    gap: 24px;
}
	.button, .text-link {
    letter-spacing: 0.4px;
    font-size: 15px;
}
	.featured-strip {
    padding: 38px 0 45px;
}	
	.footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
	.footer-grid  .footer-brand-col {
    grid-column: span 3;
}
	.footer-grid  .footer-brand-col p {
    max-width: 100%;
}
	.aviation-section {
    padding: 70px 0 65px;
}
	.section-rule {
    margin-bottom: 53px;
}
	.media-logos-wrap:before {
    max-width: 150px;
}
	.media-logos-wrap:after {
    max-width: 200px;

}
	.proof-bar strong {
    font: 600 27px/1 var(--serif);
}
	.proof-bar div {
    padding: 0 22px;
}
}
@media(max-width:991px){
	.shell {
    width: 100%;
}
	.venture-panel {
    grid-template-columns: 1fr;
    gap: 25px;
}
	.primary-nav a {
    font-size: 14px;
}
	section.about-section .about_bottom.shell {
    padding: 47px 30px;
    margin-top: 65px;
    max-width: calc(100% - 30px);
}
	.about-section {
    padding: 44px 0 64px;
}
	.ventures-section {
    padding: 50px 0 0;

}

}
@media(max-width:900px){
	.shell.header-inner button.nav-toggle {
    position: relative;
}

.shell.header-inner button.nav-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.shell.header-inner button.nav-toggle[aria-expanded="true"]:after {
    transform: rotate(45deg) translateY(-50%);
    content: "";
    width: 27px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 13px;
    top: 46%;
}

.shell.header-inner button.nav-toggle[aria-expanded="true"]:before {
    transform: rotate(-45deg) translateY(50%);
    content: "";
    width: 27px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 13px;
    top: 20px;
}
nav#primary-nav {
    height: 100vh;
    top: 100%;
    position: absolute;
}
	.shell.header-inner {
    position: relative;
}
		.aviation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
		.about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}
	.reveal.visible {
    max-width: 100%;
    width: 100%;
}
		.hero {
    height: auto;
}
	.hero-inner {
    padding-top: 90px;
}
}
@media(max-width:767px){
	.shell {
    width: 100%;
}
	.aviation-copy h2, .articles-section h2 {
    font-size: 26px;
}
	section.about-section .about_bottom.shell {
    padding: 27px 20px;
    margin-top: 50px;
    text-align: center;
    max-width: calc(100% - 30px);
}
	.aviation-section {
    padding: 40px 0;
}
	.section-rule {
    margin-bottom: 25px;
}
	.article-card h3 {
    font: 400 18px/26px var(--serif);
}
	.articles-section {
    padding: 0 0 58px;
}
	.footer-grid  .footer-brand-col {
    grid-column: unset;
}
	.footer-grid {
    grid-template-columns: 1fr;
}
	.featured-strip button.slick-arrow {
    display: none !important;
}
	.media-logos-wrap:after {
    max-width: 150px;
}
	.about-section .shell.about-grid {
    display: block;
}
section#aviationSection .shell.aviation-grid {
    display: block;
}

section#aviationSection .shell.aviation-grid .flight-stats {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

section#aviationSection .shell.aviation-grid .flight-stats .flight {
    padding: 0;
    border: 0;
}
}
@media(max-width:620px){
	.shell.about-grid .about-photo-wrap .proof-bar {
    width: 100%;
    max-width: 100%;
}
}
@media(max-width:567px){
		.aviation-copy h2, .articles-section h2 {
    font-size: 26px;
}
	.hero-copy h1 {
    font-size: 35px;
}
	.ventures-section h2 {
    font-size: 30px;
    line-height: 100%;
}
	.flight-stats strong {
    font-size: 27px;
}
	.article-card .text-link, .archive-card .text-link {
    font-size: 13px;
    padding-top: 0;
    padding-bottom: 6px;
}
	.articles-section {
    padding: 0 0 38px;
}
	.site-footer {
    padding-top: 45px;
}
	.footer-grid {
    gap: 15px;
}
	.newsletter-form input[type="submit"] {
    font-size: 13px;
}
	.media-logos:after,
	.media-logos:before {
		display: none;
	}
	.brand-wrap {
    max-width: 240px;
    width: 100%;
}
	.media-logos-wrap:after {
    max-width: 80px;
}
	.media-logos-wrap:before {
    max-width: 60px;

}
	.featured-strip {
    padding: 38px 0 5px;
}
	.proof-bar strong {
    font-size: 20px;
}
	.about-section .shell.about-grid .about-copy {
    margin-top: 18px;
}
	section.about-section .about_bottom.shell h2 {
    font-size: 30px;
}
	.proof-bar div {
    padding: 0 12px;
}
}
@media(max-width:480px) {
		.media-logos-wrap:after {
    max-width: 10px;
}
	.media-logos-wrap:before {
    max-width: 10px;

}
	.about-copy h2 {
    font-size: 28px;
}
	section.about-section .about_bottom.shell h2 {
    font-size: 28px;
}
}
section.about-section .about_bottom.shell {
  opacity: 0;
  transform: translateY(20px);
  animation: aboutFadeIn linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

@keyframes aboutFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.about-page-section.single-post-section article.single-post-article .entry-content a {
    word-break: break-all;
}