/* Fonts */
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/10/fonts/VelaSans-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/10/fonts/VelaSans-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/10/fonts/VelaSans-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/10/fonts/VelaSans-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/10/fonts/VelaSans-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/10/fonts/VelaSans-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: VelaSans;
    src: url(https://cdn-cabinet.ua.news/assets-front/articles/10/fonts/VelaSans-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --grey-sep: #E7E7E7;
    --black: #000;
    --grey: #DADADA;
    --red: #D23223;
    --white: #FFF;
    --white-60: #ffffff99;
    --dark-bg: #2B2A29;
    --dark-text: #1A1A1A;
    --gold: #EAD295;
    --green: #12403C;
    --blue: #233657;
    --beige: #B28463;
    --very-dark-desaturated-blue-20: rgba(26, 26, 26, 0.20);
    --very-dark-desaturated-blue-40: rgba(26, 26, 26, 0.40);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VelaSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.web{
    display: block;
}
.mob{
    display: none;
}

h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}
p.subhead {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
p{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

/* Container */
.container {
    width: 100%;
    max-width: calc(1272px + 24px);
    margin: 0 auto;
    padding: 0 12px;
}

.container-wide {
    width: 100%;
    max-width: calc(1272px + 24px);
    margin: 0 auto;
    padding: 0 12px;
}

.logo {
    position: relative;
    width: 151px;
    height: 32px;
    margin: 0 auto;
}

.bg-dark{
    background-color: var(--dark-bg);
}
.bg-gold{
    background-color: var(--gold);
}
.bg-gray{
    background-color: var(--grey);
}
.bg-green{
    background-color: var(--green);
}
.bg-blue{
    background-color: var(--blue);
}
.fill-dark{
    path{
        fill: var(--dark-bg);
    }
}
.fill-gold{
    path{
        fill: var(--gold);
    }
}
.fill-gray{
    path{
        fill: var(--grey);
    }
}
.fill-green{
    path{
        fill: var(--green);
    }
}
.fill-black{
    path{
        fill: var(--black);
    }
}
section.standard{
    padding: 80px 0;
}
.divider{
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://cdn-cabinet.ua.news/assets-front/articles/10/images/hero-waves.webp');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 60px 84px 60px;
    margin-top: 128px;
}

header {
    top: 0;
}

.hero-content {
    gap: 30px;
    max-width: 1272px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    margin: 0 auto;
    height: 100%;
}
.hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-breadcrumbs .hero-content-type {
    font-weight: 500;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 140%;
    text-transform: uppercase;
    color: var(--white);
}
.hero-breadcrumbs .hero-category {
    font-weight: 500;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 140%;
    text-transform: uppercase;
    color: var(--white-60);
}
.hero-title {
    font-weight: 600;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: left;
    color: var(--gold);
    max-width: 1272px;
    margin-bottom: 24px;
}
.hero-author-info{
    display: flex;
    gap: 25px;
    margin-top: auto;
}
.hero-author-info img{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-position: center;
}
.hero-author-info p{
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    max-width: 468px;
    text-align: left;
}
.hero-meta {
    border-top: 1px solid #ffffff33;
    padding-top: 30px;
    width: 640px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.hero-meta .hero-meta-info {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--white-60);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-meta .hero-meta-date {

}
.hero-meta .hero-meta-author {
    color: var(--white);
}
.hero-meta .hero-meta-social {
    margin-top: auto;
    display: flex;
    gap: 24px;
}

/*Full image section*/
.full-image-section{
    aspect-ratio: 1443/600;
    width: 100%;
}
.full-image-section.smaller-height{
    aspect-ratio: 1443/600;
    width: 100%;
}
.full-image-section img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*Intro Section*/
.intro-section .intro-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.intro-section .intro-content div:first-child{
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px
}

/* Logo Section */
.logo-section svg {
    width: 100%;
}

/*About Section*/
.about-section .about-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about-section .about-content > div{
    display: flex;
    flex-direction: column;
    gap: 48px;
    color: var(--white);
}
.about-section .about-content div:first-child{
    padding-right: 60px;
}
.about-section .about-content ul{
    font-size: 24px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--gold);
}
.about-section .about-content ul span{
    color: var(--white);
}
.about-section .about-content img{
    object-fit: cover;
}
.about-section .about-content a{
    color: var(--red);
    text-decoration: none;
}
.about-section .about-content a:hover{
    text-decoration: underline;
}

@media (max-width: 991px){
    .web{
        display: none;
    }
    .mob{
        display: block;
    }
    body section{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }
    p.subhead {
        font-size: 16px;
    }
    p{
        font-size: 16px;
    }
    section.standard{
        padding: 40px 0;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }
    .container-narrow{
        margin: 0 auto;
        padding: 0 16px;
    }

    .container-wide {
        padding: 0 16px;
    }

    /* Hero Section */
    .hero-section{
        padding: 48px 0 32px;
        min-height: 322px;
        margin-top: 0;
        background-image: none
    }
    .hero-content {
        gap: 24px;
    }
    .hero-title {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .hero-author-info{
        gap: 16px;
        align-items: center;
    }
    .hero-author-info img{
        width: 48px;
        height: 48px;
    }
    .hero-author-info p{
        font-size: 14px;
    }
    .hero-meta {
        width: 100%;
        padding-top: 24px;
        flex-direction: column;
        align-items: start;
        gap: 24px;
        margin-top: 0;
    }
    .hero-meta .hero-meta-info {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap:8px;
    }
    .hero-meta .hero-meta-info svg{
        display: none;
    }
    .hero-meta-social-item{
        height: 24px;
    }

    /*Full image section*/
    .full-image-section{
        aspect-ratio: 360/240;
        max-height: 400px;
    }
    .full-image-section.smaller-height{
        aspect-ratio: 360/240;
    }

    /*Intro Section*/
    .intro-section .intro-content{
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .intro-section .intro-content div:first-child{
        padding-right: 0;
        gap: 24px;
    }
    .intro-section .intro-content .subhead{
        font-size: 20px;
        font-weight: 600;
    }

    /* Logo Section */
    .logo-section.standard {
        padding-top: 0;
    }
    .logo-section.standard svg{
        height: auto;
    }

    /*About Section*/
    .about-section.standard{
        padding-top: 20px;
    }
    .about-section .about-content{
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-section .about-content > div{
        gap: 24px;
    }
    .about-section .about-content div:first-child{
        padding-right: 0;
    }
    .about-section .about-content ul{
        font-size: 16px;
        padding-left: 16px;
        gap: 16px;
    }
    .about-section .about-content img{
        object-fit: cover;
        aspect-ratio: 328 / 356;
        object-position: center;
    }
}

