/* =================================================
   RETNA Overrides CSS
   Extracted from inline <style> blocks
   Date: 2026-04-23
   ================================================= */

/* === PREMIUM IMAGE DISPLAY === */
/* Single news/mural/collab detail images */
/* Strategy: comfortable reading width, image fills container */
.news-page__image,
.image-16 {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  max-height: 75vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 2px;
}

/* Comfortable reading width for text + image harmony */
.news-page__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ensure div wrappers don't stretch images */
div[style*="width:100%"] img.image-16,
div[style*="width:100%"] img.news-page__image {
  width: 100% !important;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .news-page__container {
    max-width: 780px;
  }
}

.murals-content__list {
  	padding-inline: 20px;
  	display: flex;
    overflow: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
	  scroll-behavior: smooth;
  	overflow-x: auto;
  	scrollbar-width: none; /* Firefox */
  	-ms-overflow-style: none; /* IE и Edge старых версий */
	}
  .murals-content__list::-webkit-scrollbar {
  	display: none; /* Chrome, Safari, Opera */
	}
  .murals-content__item {
  	scroll-snap-align: center;
  }
	.murals-content__item a {
  	position: relative;
    width: 460px;
    height: 460px;
    display: flex;
    flex-shrink: 0;
  }
  .murals-content__item a:hover img {
		transform: scale(1.15)
  }
  .murals-content__item img {
		transition: .3s ease-in;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .murals-content__item .thumb {
		width: 100%;
    overflow: hidden;
  }
  .murals-content__item a .location {
  	z-index: 2;
		position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: #000000CC;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-block: 11px;
  }
  @media (max-width: 767px) {
    .murals-content__item a .location {
      padding-block: 8px;
    }
    .murals-content__item a {
      width: 270px;
      height: 270px;
    }
  }
	/* NEW SITE MENU START */
  body:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(15px);
        z-index: 500;
        opacity: 0;
        visibility: hidden;
        transition: all .3s linear;
        background: #ffffff38;
    }
    body.shower::before {
        opacity: 1;
        visibility: visible;
    }
    body.shower {
        overflow: hidden;
    }
    .site-menu {
        overflow-x: hidden;
        overflow-y: scroll;
        max-width: 587px;
        width: 100%;
        position: fixed;
        top: 0;
        right: 0;
        padding: 86px 93px;
        background: #000;
        height: 100vh;
        z-index: 600;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .site-menu__close {
        border: none;
        box-shadow: none;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        transition: .3s linear;
        background: #fff;
    }
    @media (hover: hover) {
        .site-menu__close:hover {
            transform: scale(.9);
        }
    }
    @media (hover: none) {
        .site-menu__close:active {
            transform: scale(.9);
        }
    }
    .site-menu.open {
        transform: translateX(0);
    }
    .site-menu__nav {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .site-menu__list {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }
    .site-menu__list.bottom-ul {
        margin-top: auto;
    }
    .site-menu__list-link {
        text-decoration: none;
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        text-transform: capitalize;
        transition: .3s linear;
        color: #E3E3E3;
    }
    @media (hover: hover) {
        .site-menu__list-link:hover {
            color: #B1FFE9;
        }
    }
    @media (hover: none) {
        .site-menu__list-link:active {
            color: #B1FFE9;
        }
    }
    .dd-menu-wrap {
        transform: translateX(100%);
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-block: 51px 81px;
        z-index: 5;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        background: #000;
    }
    .dd-menu-wrap.open {
        transform: translateX(0);
    }
    .dd-menu-wrap__bottom {
        margin-top: auto;
    }
    .dd-menu-back {
        cursor: pointer;
        padding-block: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 47px;
    }
    .dd-menu-back .text {
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        text-transform: uppercase;
        text-decoration: underline;
        color: #fff;
    }
    .dd-menu__title {
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        text-transform: capitalize;
        margin: 0 0 90px;
        color: #FDFDFD;
    }
    .dd-menu__list {
        display: flex;
        flex-direction: column;
        gap: 47px;
    }
    .dd-menu__link {
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        text-transform: capitalize;
        text-decoration: none;
        transition: .3s linear;
        color: #fff;
    }
    .dd-menu__link.w--current {
    	color: #B1FFE9;
    }
    .site-menu__list-link.w--current {
      color: #B1FFE9;
    }
    .dd-mobile-lnk {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .dd-mobile-lnk .arrow-ico {
        width: 16px;
        height: 16px;
        transition: all .2s linear;
        opacity: 0;
        transform: translateX(-5px);
    }
    @media (hover: hover) {
        .dd-menu__link:hover {
            color: #B1FFE9;
        }
        .dd-mobile-lnk:hover .arrow-ico {
            transform: translateX(0px);
            opacity: 1;
        }
    }
    @media (hover: none) {
        .dd-menu__link:active {
            color: #B1FFE9;
        }
        .dd-mobile-lnk:active .arrow-ico {
            transform: translateX(0px);
            opacity: 1;
        }
    }
    @media (max-width: 767px) {
        .site-menu {
            max-width: 100%;
            padding: 40px;
        }
        .site-menu__list {
            gap: 25px;
        }
        .site-menu__list-link {
            font-size: 16px;
        }
        .dd-menu-wrap {
            padding-block: 40px;
        }
        .dd-menu__list {
            gap: 25px;
        }
        .dd-menu-back {
            margin-bottom: 30px;
        }
        .dd-menu__title {
            margin: 0 0 45px;
        }
        .dd-mobile-lnk .arrow-ico {
            opacity: 1;
            transform: translateX(0);
        }
        .site-menu__close {
            width: 35px;
            height: 35px;
            top: 10px;
            right: 10px;
        }
        @media (hover: hover) {
            .dd-mobile-lnk:hover .arrow-ico {
                transform: translateX(5px);
            }
        }
        @media (hover: none) {
            .dd-mobile-lnk:active .arrow-ico {
                transform: translateX(5px);
            }
        }
    }
    .site-menu__close .w-embed {
    	width: 24px;
      height: 24px;
    }
  /* NEW SITE MENU END */
	@media (max-width: 767px) {
  	.main {
    	overflow: hidden;
    }
  }
	body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .footer {
  	margin-top: auto;
  }
	.close-btn {
  	position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: .3s linear;
  }
  .close-btn:hover {
		transform: scale(.9)
  }
  @media (max-width: 767px) {
  	.close-btn {
    	width: 35px;
      height: 35px;
      top: 10px;
      right: 10px;
    }
  }
  .close-btn .w-embed {
 	width: 24px;
    height: 24px;
  }

/* Foundation page — force animation blocks visible immediately */
.ver-content__anim {
  opacity: 1 !important;
  transform: none !important;
}
	body {
  	position: relative;
	}
	body::before {
  	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear;
    background: #ffffff38;
  }
  body.shower::before {
  	opacity: 1;
    visibility: visible;
  }
  body.shower {
  	overflow: hidden;
  }
  .menu,
  .menu-team,
  .menu-gall {
  	overflow-x: hidden;
  	max-width: 587px;
    width: 100%;
  	position: fixed;
    top: 0;
    right: 0;
    padding: 86px 93px;
    background: #000;
    height: 100vh;
    z-index: 600;
    transform: translateX(100%);
    transition: all .3s linear;
  }
  @media (max-width: 767px) {
    .menu,
    .menu-team,
    .menu-gall {
			max-width: 100%;
      padding: 30px;
      min-height: 100vh;
      overflow-y: scroll;
    }
    .menu-team,
    .menu-gall {
      transform: translateX(100%) !important;
    }
    .menu-team.show,
 	 	.menu-gall.show {
        transform: translateX(0%) !important;
  	}
  }
  .menu.shown,
  .menu-team.shown,
  .menu-gall.shown {
    transform: translateX(0%);
  }
  .menu__nav {
  	display: flex;
    flex-direction: column;
    height: 100%;
    transition: .3s linear;
  }	
  .menu__nav.hidden {
  	transform: translateX(-100%)
  }
  .menu__nav .menu-item {
  	transition: all .2s linear;
    width: max-content;
  }
  .menu__nav .menu-item.w--current {
  	color: #B1FFE9;
  }
  .menu__nav .menu-item:hover {
  	color: #B1FFE9;
  }
  .menu__nav .menu-item--lg {
  	display: flex;
    align-items: center;
    gap: 10px;
  }
   .menu__nav .menu-item--lg .w-embed {
  	width: 16px;
    height: 16px;
    transition: all .2s linear;
    opacity: 0;
    transform: translateX(-5px);
  }
  @media (max-width: 767px) {
    .menu__nav .menu-item--lg .w-embed {
    	opacity: 1;
    	transform: translateX(0px);
    }
  }
  .menu__nav .menu-item--lg:hover .w-embed {
    opacity: 1;
    transform: translateX(0px);
  }
  .menu__nav .top-block {
		display: flex;
    flex-direction: column;
    gap: 46px;
  }
  @media (max-width: 767px) {
  	.menu__nav .top-block {
    	gap: 35px;
      padding-top: 50px;
    }
  }
  .menu__nav .bottom-block {
  	margin-top: auto;
  }
	.header-upd__burger {
  	cursor: pointer;
  }
  .menu-team nav,
  .menu-gall nav {
  	display: flex;
    flex-direction: column;
    gap: 46px;
  }
  @media (max-width: 767px) {
  	.menu-team nav,
  	.menu-gall nav {
    	gap: 35px;
    }
  }
  .menu-team.show,
  .menu-gall.show{
  	transform: translateX(0)
  }
  .team-back,
  .gall-back {
  	position: relative;
  }
  .team-back::before,
  .gall-back::before {
		content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: #fff;
    transition: width .2s linear;
  }
  .team-back:hover::before,
  .gall-back:hover::before {
  	width: 100%;
  }
	.header-upd {
  	z-index: 50;
  	padding: 15px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
  }
  @media (max-width: 767px) {
  	.header-upd {
    	padding: 15px 8px;
    }
  }
  .header-upd__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  .header-upd__logo {
  	max-width: 193px;
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  @media (max-width: 767px) {
    .header-upd.retna-page   	  .header-upd__logo {
    	max-width: 100px;
    }
  }
  .header-upd__logo svg {
    width: 100%;
    height: auto;
  }
  .header-upd.scroll {
  	background: #181818;
  } 
	.bg-block,
  .retna-intro__bg {
  	background-size: 130%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    animation: shrinkTransform 2s ease-out forwards;
  }
  @keyframes shrinkTransform {
    from {
      transform: scale(1.3);
    }
    to {
      transform: scale(1);
    }
  }
  .form__box-field input,
  .form__box-field textarea {
    outline: none !important;
  }
  .form__box-field input:focus,
  .form__box-field textarea:focus {
    outline: none !important;
  }
  .form__box-field input:focus,
  .form__box-field textarea:focus {
    border-color: #fff !important;
  }
  label {
  	transition: .4s linear;
  }
  .form-box__field::placeholder,
  .input-item.w-input::placeholder {
  	color: transparent;
  }
/* Обычные input */
.form__box-field input:focus + label,
.form__box-field input:not(:placeholder-shown) + label {
  transform: translateY(-32px);
}
.form__box-field textarea:focus + label,
.form__box-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-50px);
}
/* Исключение для .box-field */
.form__box-field.box-field input:focus + label,
.form__box-field.box-field input:not(:placeholder-shown) + label,
.form__box-field.box-field textarea:focus + label,
.form__box-field.box-field textarea:not(:placeholder-shown) + label {
  transform: translateY(0);
}
/* Для .form-box__flow */
.form-box__flow .w-input:focus + label,
.form-box__flow .w-input:not(:placeholder-shown) + label {
  transform: translateY(-30px);
}
  .form-box__flow .w-input:focus {
  	border: none !important;
    border-bottom: 1px solid #fff !important;
  }
   .form-box__flow .w-input {
  	border: none !important;
    border-bottom: 1px solid #fff !important;
  }
  .w-form-done {
  	background: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 100%;
  }
  .works__gall .swiper-slide {
  	height: auto;
    position: relative;
  }
  .works__gall .swiper-slide .thumb {
  	height: 503px;
  }
  @media (max-width: 1199px) {
  	.works__gall .swiper-slide .thumb {
      height: 400px;
    }
    .works__gall .swiper-slide .thumb img {
			width: 100%;
      object-fit: cover;
    }
    .works__gall-arrow {
    	display: none;
    }
  }
  @media (max-width: 991px) {
  	.works__gall .swiper-slide .thumb {
      height: 300px;
    }
  }
  .works__gall .swiper-slide .thumb img {
		height: 100%;
  }
  .works__gall .swiper-slide .thumb::before {
		content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    opacity: 1;
    transition: all .3s linear;
  }
   .works__gall .swiper-slide.swiper-slide-active .thumb::before {
   		opacity: 0;
   }
  .works__gall .swiper-slide .text {
  	opacity: 0;
    transform: translateY(20px);
    transition: all .3s linear;
  }
   .works__gall .swiper-slide.swiper-slide-active .text {
     opacity: 1;
     transform: translateY(0);
     transition: all .3s linear;
   }
   .works__gall {
   	position: relative;
   }
   .works__gall .arrow-prev {
	   	cursor: pointer;
   		position: absolute;
    	z-index: 2;
    	top: 50%;
    	right: 66%;
    	transform: translateY(-50%);
   }
   .works__gall .arrow-next {
	   	cursor: pointer;
   		position: absolute;
    	z-index: 2;
    	top: 50%;
    	left: 66%;
    	transform: translateY(-50%);
   }
   header {
   	transition: .3s linear;
   }
   header.scrolled {
   	background: #181818;
   }
   @media (max-width: 768px) {
   	.latest__gall a  {
    	height: 466px
    }
    .latest__gall a img:first-child {
				height: 100%;
        object-fit: cover;
    }
   }
	.retna-content__links a .link-text {
    transition: color .3s linear;
  }
  .retna-content__links a:hover .link-text {
		color: #fff;
  }
  .retna-content__links a {
  	position: relative;
  }
  .retna-content__links a:hover::before {
		width: 100%;
  } 
  .retna-content__links a::before{
  	content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    transition: width .3s linear;
    background: #fff;
  }
  .retna-content__links a.active::before {
    width: 100%;
  }
  .retna-content__links a.active .link-text {
		color: #fff;	
  }
  .works-lg__cta a {
  	transition: all .3s linear;
  }
  .works-lg__cta .cta-white {
  	background: #fff;
  }
  .works-lg__cta .cta-white:hover {
		background: #0c0c0c;
    color: #fff;
    border-color: #fff;
  }
   .works-lg__cta .cta-black:hover {
		background: #fff;
    color: #000;
    border-color: #fff;
  }
  .works-lg__gall a {
  	overflow: hidden;
  }
  .works-lg__gall a .gall-img {
    transition: all .3s linear;
  }
  .works-lg__gall a .gall-inst {
    transition: all .3s linear;
  }
  .works-lg__gall a:hover .gall-img {
  	transform: scale(1.03)
  }
  .works-lg__gall a:hover .gall-inst {
  	transform: translateY(-15px)
  }
  .form-box__btn {
   	color: transparent !important;
  }
  .news-slide {
  	display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
  }
  .news-content__link img {
  	transition: .3s linear;
  }
  .news-content__link:hover img {
  	transform: scale(1.03);
  }
  .news-pagination {
  	position: relative;
    max-width: 400px;
    margin: 40px auto 0;
    background: #4C4C4C;
    height: 1px !important;
  }
  .swiper-pagination-progressbar-fill {
  	background: #fff !important;
  }
  @media (max-width: 991px) {
    .news-slide {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 30px;
    }
  }
  @media (max-width: 767px) {
    .news-slide {
      display: grid;
      grid-template-columns: repeat(1,1fr);
      gap: 20px;
    }
  }
/* === GALLERY PAGE ARTWORK GRID === */
.gallery-info .gallery-info__list {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 20px;
  padding: 40px 0;
  width: 100% !important;
  max-width: 100% !important;
}
.gallery-info__item {
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.gallery-info__item:hover {
  transform: scale(1.02);
}
.gallery-info__art-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.gallery-info__art-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 40px 12px 12px;
  pointer-events: none;
}
.gallery-info__art-title {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}
.gallery-info__art-medium {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
  font-family: 'Outfit', sans-serif;
}
@media (max-width: 767px) {
  .gallery-info__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 0;
  }
  .gallery-info__art-img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .gallery-info__list {
    grid-template-columns: 1fr;
  }
}
/* Fix collaborations slider images showing as 0 width */
.works__gall-slide .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.works__gall-slide .thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* === SHOP PAGE === */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}
.shop-toolbar__count {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  margin: 0;
}
.shop-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-toolbar__label {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.shop-toolbar__select {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='white'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.shop-toolbar__select option {
  background: #111;
  color: #fff;
}
.shop-grid__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 60px;
}
.shop-grid__link {
  text-decoration: none;
  display: block;
}
.shop-grid__img-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
}
.shop-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.shop-grid__link:hover .shop-grid__img {
  transform: scale(1.05);
}
.shop-grid__info {
  padding: 0 4px;
}
.shop-grid__title {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  margin: 0 0 4px;
  line-height: 1.3;
}
.shop-grid__price {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  margin: 0;
}
@media (max-width: 991px) {
  .shop-grid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .shop-grid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .shop-grid__list {
    grid-template-columns: 1fr;
  }
}

/* === HEADER FIX: social icons + logo + burger alignment === */
.header-upd__nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 15px;
}

.header-upd__soc {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px;
  flex-shrink: 0;
}

.header-upd__logo {
  flex: 0 1 auto;
  max-width: 193px;
  display: block;
  margin: 0 auto;
}

.header-upd__burger {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.burger-text {
  font-family: Outfit, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.burger-icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === CONTENT SPACING: image ↔ title ↔ text === */
.news-page__container .image-16 {
  margin-bottom: 32px !important;
}

.news-page__container .heading-3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 130%;
}

.news-page__container .paragraph-9 {
  margin-top: 0;
  line-height: 180%;
}

/* Empty date/author paragraphs — collapse to zero */
.news-page__container .date.w-dyn-bind-empty,
.news-page__container .author.w-dyn-bind-empty {
  display: none;
}

/* Mobile header refinements */
@media (max-width: 767px) {
  .header-upd__soc {
    gap: 8px;
  }
  .header-upd__btn {
    font-size: 10px;
    white-space: nowrap;
  }
  .header-upd__logo {
    max-width: 100px;
  }
  .burger-text {
    font-size: 10px;
  }
}

/* === SHOP: hide public prices === */
.shop-grid__price {
  display: none !important;
}
