@view-transition {
    navigation: auto;
}

html {
    scrollbar-gutter: stable;
}

body {
    min-width: 320px;
    position: relative;
}

body.is-modal {
    overflow: hidden;
}

a, button, input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.header {
    width: 100%;
    min-height: 50px;
    background-color: var(--wp--preset--color--background);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid var(--wp--preset--color--border);
}

@media (min-width: 1480px) {
    .header {
        width: 290px;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        border-bottom: none;
    }
}

.header.is-open {
    z-index: 2011;
}

.open-header-overlay {
    position: fixed;
    inset: 0;
    z-index: 2010;
    background-color: rgba(0, 0, 0, .5);
    min-height: -webkit-fill-available;
}

.header-inner {
    height: 100%;
    padding: 0 20px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 1980;
}

@media (min-width: 1480px) {
    .header-inner {
        width: 290px;
        position: fixed;
        top: 0;
        left: 0;
        height: 80px;
        padding: 0 30px;
    }
}

.header-logo {
    width: 120px;
    height: 50px;
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-icon {
	width: 100%;
	height: 100%;
	fill: var(--wp--preset--color--primary);
}

.header-controls {
    position: relative;
    right: -10px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 3px;
}

@media (min-width: 1480px) {
    .header-controls {
        right: 0;
    }
}

.header-control {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    padding: 0;
}

@media (min-width: 1480px) {
    .header-control.button-burger {
        display: none;
    }
}

.button-burger-root {
    position: relative;
    width: 25px;
    height: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button-burger-root span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--wp--preset--color--default);
    opacity: 1;
    left: 0;
    border-radius: 2px;
    transform: rotate(0);
    transition: .25s ease-in-out;
}

.button-burger-root span:first-child {
    top: 0;
}

.button-burger-root span:nth-child(3) {
    bottom: 0;
}

.is-open .button-burger-root span:first-child {
    transform: rotate(45deg);
    top: 8px;
}

.is-open .button-burger-root span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.is-open .button-burger-root span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 8px;
}

.button-search svg {
    width: 40%;
    height: 40%;
}

.header-nav-panel {
    width: 290px;
    position: fixed;
    top: 51px;
    left: -290px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--wp--preset--color--background);
    z-index: 2001;
}

@media (min-width: 1480px) {
    .header-nav-panel {
        left: 0;
        top: 80px;
    }
}

.header-nav-panel.is-open {
    left: 0;
    animation: menu_open .45s ease;
    z-index: 2011;
}

@keyframes menu_open {
    0% {
        left: -290px;
        transform: translateX(-290px);
    }
    100% {
        left: 0;
        transform: translateX(0);
    }
}

@keyframes menu_close {
    0% {
        left: 0;
        transform: translateX(0);
    }
    100% {
        left: -290px;
        transform: translateX(-290px);
    }
}

.header-nav-menu {
    flex-direction: column;
    width: 290px;
    height: auto;
    background-color: var(--wp--preset--color--background);
    overflow: hidden auto;
}

.header-nav-menu-inner {
    padding: 20px;
}

@media (min-width: 1480px) {
    .header-nav-menu-inner {
        padding: 0 30px 30px 30px;
    }
}

.header-nav-menu,
.header-nav-menu-inner {
    display: flex;
    flex: 1 1;
    box-sizing: border-box;
}

.header-navigation {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.header-navigation-main {
    width: 100%;
    display: flex;
    align-self: flex-start;
    flex-direction: column;
    gap: 30px;
}

.header-navigation-general-item {
    position: relative;
    width: 100%;
    display: block;
    text-decoration: none;
    color: var(--wp--preset--color--default);
    padding: 10px 0;
}

.header-navigation-general-item::before {
    content: "";
    display: block;
    position: absolute;
    inset: 2px -5px;
    visibility: hidden;
    border-radius: 5px;
    background-color: transparent;
}

.header-navigation-general-item:hover {
    opacity: 1;
    color: var(--wp--preset--color--default);
}

.header-navigation-general-item:hover:before {
    background-color: var(--wp--preset--color--white);
    visibility: visible;
}

.header-navigation-general-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-navigation-general-item-text {
    font-size: 17px;
    line-height: 1;
}

.header-navigation-general-item-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.header-navigation-general-item-icon svg {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--wp--preset--color--default);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 10px;
}

.header-navigation-hot,
.header-navigation-small {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header-navigation-hot li a {
    margin: 5px 5px 5px 0;
    padding: 0 12px;
    font-size: 14px;
    line-height: 26px;
    height: 26px;
    border-radius: 12px;
    background-color: var(--wp--preset--color--background-dark);
    box-sizing: border-box;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
}

.header-navigation-hot li.accent a {
    color: var(--wp--preset--color--white);
    background-color: var(--wp--preset--color--primary);
}

.header-navigation-hot li.accent a:hover {
    color: var(--wp--preset--color--default);
}

.header-navigation-hot li a:hover {
    background-color: var(--wp--preset--color--white);
}

.header-navigation-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
}

.header-navigation-small {
    display: inline-flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 12px;
}

.header-navigation-small li a {
    font-size: 13px;
    line-height: 23px;
    text-decoration: none;
    white-space: nowrap;
    color: var(--wp--preset--color--grey);
}

.header-navigation-small li.accent a {
    color: var(--wp--preset--color--primary);
}

.header-navigation-small li a:hover {
    color: var(--wp--preset--color--grey-dark);
}

.header-navigation-age {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 15px;
}

.header-navigation-age-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wp--preset--color--default);
    color: var(--wp--preset--color--white);
    font-size: 13px;
    border-radius: 100%;
}

.header-navigation-age-label {
    font-size: 11px;
    color: var(--wp--preset--color--grey);
    max-width: 150px;
}




main {
    min-height: 100vh;
}

.content-layout {
    width: 100%;
    position: relative;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.content-layout.is-white {
    background-color: var(--wp--preset--color--white);
}

@media (min-width: 1480px) {
    main {
        margin-left: 290px;
    }

    .content-layout {
        max-width: 1360px;
        padding: 35px 20px;
    }
}

.root-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
}

@media (min-width: 1180px) {
    .root-layout {
        grid-template-columns: 1fr 340px;
    }
    .root-aside {
        padding: 30px 20px 30px 0;
    }
    .root-aside--inner {
        position: sticky;
        top: 80px;
		display: flex;
		flex-direction: column;
		gap: 30px;
    }
}

@media (min-width: 1480px) {
    .root-aside--inner {
        top: 30px;
    }
}

.widget-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	text-transform: uppercase;
}

.material-taxonomies-item {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: var(--wp--preset--color--grey)
}

.material-taxonomies-item:not(:last-child)::after {
    content: "/";
}

.material-taxonomies-item a {
    text-decoration: none;
    color: var(--wp--preset--color--grey);
}

.material-taxonomies-item a:hover {
    color: var(--wp--preset--color--grey-dark);
}

@media (min-width: 1280px) {
    .material-taxonomies-item {
        font-size: 16px;
    }
}

.material-meta {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: var(--wp--style--global--content-size);
    font-size: 13px;
    box-sizing: border-box;
}

.material-meta-info {
    display: flex;
    flex-flow: column wrap;
    flex: 1 1 auto;
    justify-content: flex-start;
}

.material-meta-authors {
    font-weight: bold;
    margin-bottom: 2px;
}

.material-meta-author {
    font-size: 13px;
    line-height: 1.6;
}

.material-meta-author:not(:last-child)::after {
    content: ",";
    margin-right: 2px;
    margin-left: -2px;
}

@media (min-width: 1180px) {
    .material-meta-authors {
        margin-bottom: 4px;
    }

    .material-meta-author {
        font-size: 14px;
    }
}

.material-meta-author a {
    text-decoration: none;
}

.material-meta-author-name {
    white-space: nowrap;
}

.material-meta-date {
    color: var(--wp--preset--color--grey);
}

.material-meta-buttons {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
}

.material-subtitle {
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.3;
}

.material-lead {
    font-size: var(--wp--preset--font-size--paragraph);
    font-weight: 500;
    line-height: 1.6;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--wp--preset--color--border);
}

@media (min-width: 1180px) {
    .material-lead {
        font-size: 20px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
}

.material-thumbnail img {
    box-sizing: border-box;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}



.share-button {
    cursor: pointer;
    height: 44px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: var(--wp--preset--border-radius--primary);
    background-color: transparent;
    padding: 4px 10px;
    box-sizing: border-box;
}

.share-button:hover {
    border-color: var(--wp--preset--color--border-dark);
}

.share-button svg {
    width: 20px;
    height: 20px;
}

.share-button span {
    display: block;
    font-size: 13px;
}

.share-popup {
    display: none;
    visibility: hidden;
}

.share-popup.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
    min-height: -webkit-fill-available;
    overflow-y: auto;
    visibility: visible;
    z-index: 2010;
}

.share-popup-content {
    position: fixed;
    inset: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 360px;
    height: fit-content;
    background-color: var(--wp--preset--color--white);
    border-radius: var(--wp--preset--border-radius--primary);
    padding: 30px;
    margin: auto;
    box-shadow: 0 3px 5px 0 hsla(0,0%,45%,.25);
    z-index: 2020;
}

.share-popup-header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    min-height: 34px;
}

.share-popup-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    flex: 0 1 auto;
}

.share-popup-close {
    position: relative;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid var(--wp--preset--color--border);
    background-color: transparent;
}

.share-popup-close::before,
.share-popup-close::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background-color: var(--wp--preset--color--default);
}

.share-popup-close::before {
    transform: rotate(45deg);
}

.share-popup-close::after {
    transform: rotate(-45deg);
}

.share-popup-buttons {
    margin-top: 20px;
}

.share-popup-button {
    font-family: inherit;
    cursor: pointer;
    padding: 11px 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--wp--preset--color--border);
    background-color: var(--wp--preset--color--white);
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.share-popup-button:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.share-popup-button:hover {
    opacity: .8;
}

.share-popup-button-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: 100%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-popup-button-icon svg {
    width: 16px;
    height: 16px;
}

.share-popup-button span {
    font-size: 14px;
}





.archive-description {
    font-size: 15px;
}

.archive-postscount {
    line-height: 1;
    color: var(--wp--preset--color--grey);
}

.material-item {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: var(--wp--preset--border-radius--primary);
    background-color: var(--wp--preset--color--white);
    overflow: hidden;
}

.material-item:hover {
    border-color: var(--wp--preset--color--border-dark);
}

.material-item:hover .material-item--image {
    opacity: .9;
}

.material-item--image {
    position: relative;
    background-color: var(--wp--preset--color--background-dark);
}

.material-item--image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-item--image::before {
    content: "";
    display: table;
    padding-bottom: 66.66%;
}

@media (min-width: 760px) {
    .material-item--image::before {
        padding-bottom: 56.25%;
    }
}

@media (min-width: 1180px) {
    .material-item--image::before {
        padding-bottom: 50%;
    }
}

.material-item--body {
    padding: 16px 20px 20px;
}

@media (min-width: 1180px) {
    .material-item--body {
        padding: 20px 30px 25px;
    }
}

.material-item--title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.material-item--title a {
    text-decoration: none;
}

.material-item--title a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.material-item--subtitle {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 6px;
}

@media (min-width: 760px) {
    .material-item--title {
        font-size: 20px;
    }

    .material-item--subtitle {
        font-size: 17px;
    }
}

@media (min-width: 1180px) {
    .material-item--title {
        font-size: 22px;
    }

    .material-item--subtitle {
        font-size: 18px;
    }
}

.material-item--datetime {
    font-size: 12px;
    line-height: 1;
    color: var(--wp--preset--color--grey);
    margin-top: 20px;
}

@media (min-width: 1180px) {
    .material-item--datetime {
        margin-top: 24px;
    }
}






.vb-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
    flex-wrap: wrap;
}

@media (min-width: 1180px) {
    .vb-pagination {
        gap: 12px;
    }
}

.vb-pagination-prev,
.vb-pagination-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: var(--wp--preset--border-radius--secondary);
    text-decoration: none;
    color: var(--wp--preset--color--default);
    background-color: var(--wp--preset--color--white);
}

.vb-pagination-prev:hover,
.vb-pagination-next:hover {
    border-color: var(--wp--preset--color--border-dark);
}

@media (max-width: 1180px) {
    .vb-pagination-prev,
    .vb-pagination-next {
        padding: 10px 15px;
    }
}

.vb-pagination-numbers {
    display: flex;
    gap: 8px;
}

.vb-pagination-numbers .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: var(--wp--preset--border-radius--secondary);
    text-decoration: none;
    color: var(--wp--preset--color--default);
    background-color: var(--wp--preset--color--white);
}

@media (min-width: 1180px) {
    .vb-pagination-numbers .page-number {
        min-width: 36px;
        height: 36px;
    }
}

.vb-pagination-numbers .page-number:hover {
    border-color: var(--wp--preset--color--border-dark);
}

.vb-pagination-numbers .page-number.current {
    background: var(--wp--preset--color--primary);
    border-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    cursor: default;
}

.vb-pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: var(--wp--preset--color--grey-dark);
}




.search-popup {
    display: none;
    visibility: hidden;
}

.search-popup.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
    min-height: -webkit-fill-available;
    overflow-y: auto;
    visibility: visible;
    z-index: 2020;
}

.search-popup-content {
    position: fixed;
    inset: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 1420px;
    height: fit-content;
    background-color: var(--wp--preset--color--white);
    border-radius: var(--wp--preset--border-radius--primary);
    padding: 30px;
    margin: auto;
    box-shadow: 0 3px 5px 0 hsla(0,0%,45%,.25);
    z-index: 2030;
}

.search-form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
	max-width: 100%;
    gap: 20px;
	overflow: hidden;
}

.search-input {
    appearance: none;
    flex: 1 1 0%;
	min-width: 0;
    height: 40px;
    border: none;
    font-family: var(--wp--preset--font-family--vsebudet-inter);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    padding: 0 10px;
    background-color: var(--wp--preset--color--white);
    border-radius: var(--wp--preset--border-radius--secondary);
}

.search-input:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.search-action {
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--primary);
    border-radius: var(--wp--preset--border-radius--secondary);
}

.search-action:hover {
    opacity: .8;
}

.search-action svg {
    width: 80%;
    height: 80%;
    fill: currentColor;
}



iframe {
    max-width: 100%;
}

.error-page {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    text-align: center;
}

.error-status {
    font-size: clamp(100px, 8.8vw, 180px);
}

.error-title {
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.4;
}

.error-text {
    font-size: 17px;
    line-height: 1.4;
}