@font-face {
    font-family: 'PlusJakartaSans';
    font-style: normal;
    font-weight: 400;
    src: local('PlusJakartaSans Regular'), local('PlusJakartaSans-Regular'),
        url(../fonts/plus-jakarta-sans-2-7-1/plusjakartasans-regular.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 500;
    src: local('PlusJakartaSans Medium'), local('PlusJakartaSans-Medium'),
        url(../fonts/plus-jakarta-sans-2-7-1/plusjakartasans-medium.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 600;
    src: local('PlusJakartaSans Semibold'), local('PlusJakartaSans-Semibold'),
        url(../fonts/plus-jakarta-sans-2-7-1/plusjakartasans-semibold.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 700;
    src: local('PlusJakartaSans Bold'), local('PlusJakartaSans-Bold'),
        url(../fonts/plus-jakarta-sans-2-7-1/plusjakartasans-bold.ttf) format('truetype');
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'PlusJakartaSans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fbfbf8;
    color: #1f1f1f;
    font-style: normal;
    overflow-x: hidden;
}

a {
    color: inherit;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.vaan_container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}

header {
    max-width: 1350px;
    margin: 30px auto;
    padding: 0 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

.nav-icon {
    display: inline-flex;
    padding-left: 6px;
}

main {
    padding: 54px 0 110px;
}

.breadcrumbs {
    margin-bottom: 34px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.breadcrumbs li {
    color: #6e6e6e;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: 10px;
    color: #a8a8a8;
}

.breadcrumbs a {
    color: #333333;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.announcement-article {
    position: relative;
}

.post-header {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 76px;
}

.post-title {
    min-width: 0;
}

.post-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: #eb1d59;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.post-title h1 {
    max-width: 720px;
    color: #141414;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
}

.post-subtitle {
    max-width: 620px;
    margin-top: 22px;
    color: #444444;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
    color: #686868;
    font-size: 14px;
    font-weight: 600;
}

.post-date {
    color: #1f1f1f;
}

.post-image {
    overflow: hidden;
    border-radius: 8px;
    background: #080808;
    box-shadow: 0 24px 70px rgba(20, 20, 20, 0.14);
}

.post-image img {
    width: 100%;
}

.article-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 760px);
    gap: 64px;
    align-items: start;
    justify-content: center;
}

.article-summary {
    position: sticky;
    top: 24px;
    padding: 24px;
    border: 1px solid #e7e1d7;
    border-radius: 8px;
    background: #ffffff;
}

.summary-title {
    margin-bottom: 14px;
    color: #151515;
    font-size: 15px;
    font-weight: 700;
}

.article-summary ul {
    display: grid;
    gap: 12px;
    padding-left: 18px;
}

.article-summary li {
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.article-content {
    min-width: 0;
}

.article-content section {
    scroll-margin-top: 24px;
}

.article-content section + section {
    margin-top: 64px;
}

.article-content h2 {
    margin-bottom: 22px;
    color: #151515;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
}

.article-content h3 {
    margin-bottom: 12px;
    color: #151515;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.article-content p {
    color: #3f3f3f;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.78;
}

.article-content p + p {
    margin-top: 18px;
}

.article-content strong {
    color: #151515;
    font-weight: 700;
}

.pull-quote {
    margin: 34px 0;
    padding: 26px 0 26px 28px;
    border-left: 4px solid #eb1d59;
    color: #151515 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.focus-grid .focus-item {
    margin: 0;
    padding: 24px;
    border: 1px solid #e7e1d7;
    border-radius: 8px;
    background: #ffffff;
}

.focus-item p {
    font-size: 15px;
    line-height: 1.68;
}

.focus-item p + p {
    margin-top: 10px;
}

.principles-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding-left: 26px;
}

.principles-list li {
    color: #3f3f3f;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
}

.article-cta {
    padding: 34px;
    border-radius: 8px;
    background: #141414;
}

.article-cta h2,
.article-cta p {
    color: #ffffff;
}

.article-cta h2 {
    margin-bottom: 14px;
    font-size: 28px;
}

.article-cta p {
    color: #dddddd;
    font-size: 16px;
}

.article-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 15px 20px;
    border-radius: 7px;
    background: #ffffff;
    color: #141414;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.article-cta a:hover {
    background: #f1f1f1;
}

footer {
    padding: 40px 0 50px;
    background: #fbfbf8;
}

.footer-br {
    width: 80%;
    height: 1px;
    margin: 0 auto 10px;
    border: none;
    background-color: #d8d3ca;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
}

.vsocial,
.vfollow {
    display: flex;
    align-items: center;
}

.vfollow p {
    margin-right: 10px;
}

.footer_wrapper a {
    text-decoration: none;
}

.footer_wrapper a:hover {
    text-decoration: underline;
}

.vsocial-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    background: url('../images/global/social-icon-sprite-dark.svg') no-repeat 0 0;
}

.vsocial-github {
    width: 21px;
    background-position: -121px 0;
}

.vsocial-linkedin {
    width: 25px;
    height: 20.5px;
    background-position: -52px 0;
}

.vsocial-x {
    width: 22px;
    background-position: -25px 0;
}

.vsocial-youtube {
    width: 29px;
    background-position: -83px 0;
}

@media screen and (max-width: 1100px) {
    .post-header {
        grid-template-columns: 1fr;
    }

    .post-title h1 {
        max-width: 780px;
        font-size: 48px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-summary {
        position: static;
    }
}

@media screen and (max-width: 760px) {
    .vaan_container {
        padding: 0 20px;
    }

    header {
        margin: 20px auto;
        padding: 0 20px;
    }

    nav img {
        width: 150px;
    }

    main {
        padding: 34px 0 76px;
    }

    .breadcrumbs {
        margin-bottom: 26px;
    }

    .post-header {
        gap: 28px;
        margin-bottom: 54px;
    }

    .post-title h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .post-subtitle {
        font-size: 19px;
    }

    .article-content section + section {
        margin-top: 50px;
    }

    .article-content h2 {
        font-size: 27px;
    }

    .article-content p,
    .principles-list li {
        font-size: 16px;
        line-height: 1.72;
    }

    .pull-quote {
        padding-left: 20px;
        font-size: 22px !important;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .article-cta {
        padding: 26px;
    }
}

@media screen and (max-width: 500px) {
    header {
        padding: 0 15px;
    }

    nav img {
        width: 140px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .post-title h1 {
        font-size: 31px;
    }

    .post-meta {
        display: grid;
        gap: 8px;
    }

    .article-summary,
    .focus-grid .focus-item,
    .article-cta {
        padding: 22px;
    }

    .footer_wrapper {
        flex-wrap: wrap;
    }

    .vfollow,
    .vbtop,
    .vcopyright {
        width: 100%;
        margin-bottom: 25px;
    }

    .vcopyright {
        margin-top: 20px;
        font-size: 12px;
    }

    footer {
        padding: 40px 0 10px;
    }
}
