:root {
    --size-xs: .25rem;
    --size-s: .5rem;
    --size: 1rem;
    --size-m: 2rem;
    --size-l: 4rem;
    --size-xl: 8rem;
    --size-xxl: 12rem;
    --size-xxxl: 18rem;

    --c-light: #f7f7f7;
    --c-grey: #bfbfbf40;
    --c-dark_grey: #303030;
    --c-black: #161616;

    --m-mar-top: 6rem;
    --t-mar-top: 8rem;
    --d-mar-top: 12.5rem;
}


.c-white {color: white;}
.c-grey {color: var(--c-grey);}
.c-dark_grey {color: var(--c-dark_grey);}
.c-white--alpha {color: rgba(255, 255, 255, .75) !important;;}

.bg-white--blur {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* 
ELEMENTS
*/
.media-cover {width: 100%; height: 100%; object-fit: cover;}
.media-contain {width: 100%; height: 100%; object-fit: contain;}

.ratio-9_16 {aspect-ratio: 9/16;}
.ratio-2_3 {aspect-ratio: 2/3;}
.ratio-4_5 {aspect-ratio: 4/5;}
.ratio-1_1 {aspect-ratio: 1/1;}
.ratio-5_4 {aspect-ratio: 5/4;}
.ratio-3_2 {aspect-ratio: 3/2;}
.ratio-16_9 {aspect-ratio: 16/9;}


/* 
MEASURMENTS
*/
.pad {padding: 1rem;}

.mar-t {margin-top: 1rem;}
.mar-b {margin-bottom: 1rem;}

.mar-page {margin: var(--m-mar-top) 1rem 1rem;}
.mar-page_top {margin-top: var(--m-mar-top);}
.mar-page_top.--small {margin-top: var(--m-mar-top);}
@media only screen and (min-width: 768px) {
    .mar-page {margin: var(--t-mar-top) 1rem 1rem;}
    .mar-page_top {margin-top: var(--t-mar-top);}
}
@media only screen and (min-width: 1096px) {
    .mar-page {margin: var(--d-mar-top) 1rem 1rem;}
    #news-page.mar-page {margin: calc(var(--d-mar-top) - 4rem) 1rem 1rem;}
    .mar-page_top {margin-top: var(--d-mar-top);}
}

/* 
DISPLAY
*/
.block {display: block;}

.flex {display: flex;}
.f-wrap {flex-wrap: wrap;}
.f-nowrap {flex-wrap: nowrap;}
.f-column {flex-direction: column;}

.j-center {justify-content: center;}
.j-end {justify-content: end;}
.j-between {justify-content: space-between;}
.j-around {justify-content: space-around;}
.j-evenly {justify-content: space-evenly;}

.a-start {align-items: start;}
.a-center {align-items: center;}
.a-end {align-items: end;}


/* 
POSITION
*/
.p-fixed {position: fixed;}
.p-sticky {position: sticky;}
.p-relative {position: relative;}
.p-absolute {position: absolute;}

.p-all {top: 0; right: 0; bottom: 0; left: 0;}


/* 
STATUS
*/
.hide {display: none !important;}
.hide-m,
.hide-m_t,
.hide-m_d {display: none;}

.hide-scrollbar::-webkit-scrollbar {display: none;}
.hide-scrollbar {-ms-overflow-style: none; scrollbar-width: none;}

.v-hide {visibility: hidden;}
.stop {overflow: hidden;}

@media only screen and (min-width: 768px) {
    .hide-t,
    .hide-t_d {display: none;}

    .block-t,
    .block-t_d {display: block;}

    .flex-t,
    .flex-t_d {display: flex;}

    .grid-t,
    .grid-t_d {display: grid;}
}

@media only screen and (min-width: 1096px) {
    .hide-d,
    .hide-m_d {display: none !important;}

    .block-d {display: block;}
    .flex-d {display: flex;}
    .grid-d {display: grid;}
}

@media only screen and (min-width: 2048px) {
    .block-xd {display: block;}
    .flex-xd {display: flex;}
    .grid-xd {display: grid;}
}


@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 1096px) {}
@media only screen and (min-width: 2048px) {}
@media (hover: hover) {}