@font-face {
  font-family: "LafoySans";
  src: url("./fonts/Onest.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Remove black outline on focus for all elements */
*:focus {
  outline: none;
}

/* =========================================
   LafoySans
========================================= */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p,
a {
  color: #1a1a1a;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

body {
  font-family: "LafoySans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

p {
  font-size: 17px;
}

.dayg.banner.active {
  padding-top: 2px;
  padding-bottom: 26px;
}

.dayg.banner.active:has(+ h2) {
  padding-bottom: 0;
}

.tds_inner_close_button { 
  color: #FFFFFF !important;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  border-bottom: 1px solid #ebebeb;
  background: #fff;
}

.main-container {
  margin: 0 auto;
  padding: 0 16px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* LEFT (mobile first row) */
.header-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-left .burger-btn {
  display: none;
}

/* Mobile nav container (hidden on desktop) */
.header-nav-mobile {
  display: none;
}

.nav--mobile {
  display: none;
}

.nav-item--mobile-only {
  display: none;
}

/* LEFT */
.logo {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0;
  cursor: pointer;
  user-select: none;
  width: 160px;
  padding-left: 8px;
  outline: none;
}

.logo img {
  width: 30px;
  height: 29px;
  margin-top: 6px;
}

/* CENTER NAV */
.nav ul {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-size: 15.68px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: #f5f5f5;
  color: #333;
}

.nav-link.active {
  background: #f5f5f5;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle img {
  transition: transform 0.25s ease;
}

/* rotate arrow */
.dropdown.active .dropdown-toggle img {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 64px;
  left: 0;

  width: 144px;

  background: #fff;

  border-radius: 20px;

  padding: 12px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition: opacity 0.22s ease 0.5s, transform 0.22s ease 0.5s, visibility 0.22s 0.5s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  z-index: 20;
}

.dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition-delay: 0s !important;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center !important;

  min-height: 40px !important;

  padding: 0 10px !important;
  color: #1a1a1a;
  border-radius: 14px !important;

  text-decoration: none !important;

  font-size: 15.68px !important;
  font-weight: 500 !important;
  line-height: 1 !important;

  transition: background 0.2s ease, color 0.2s ease !important;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #333;
}

/* active state */
.nav-link.active {
  background: #f5f5f5;
  color: #1a1a1a;
}

/* active dropdown button */
.dropdown.active .dropdown-toggle {
  background: #f5f5f5;
  color: #1a1a1a;
}

/* rotate arrow */
.dropdown.active .dropdown-toggle img {
  transform: rotate(180deg);
}

/* RIGHT */
.header-actions {
  display: flex;
  align-items: center;
}

.header-actions .icon-btn {
  padding: 10px;
  transition: all 0.3s ease-in;
  border-radius: 20px;
}

.header-actions .icon-btn:hover {
  background: #f5f5f5;
}

.icon-btn {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: 0.2s ease;
  font-size: 16px;
}

/* BURGER MENU */
.burger-menu {
  position: fixed;

  inset: 0;

  background: #202022;

  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.35s ease, visibility 0.35s ease;

  overflow: hidden;
}

/* ACTIVE */
.burger-menu.active {
  opacity: 1;
  visibility: visible;
}

/* TOP */
.burger-top {
  height: 76px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1486px;
  margin: 0 auto;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.burger-logo {
  font-size: 46px;
  font-weight: 800;

  color: #fff;

  letter-spacing: -3px;
}

/* ACTIONS */
.burger-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ROUND BUTTONS */
.burger-circle-btn {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  border: none;

  background: #f5f5f5;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* CLOSE */
.burger-close {
  width: 34px;
  height: 34px;

  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* CONTENT */
.burger-content {
  height: calc(100vh - 76px);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 70px;

  padding-bottom: 80px;
}

/* COLUMN */
.burger-column {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

/* =========================
   SEARCH OVERLAY
========================= */

.search-overlay {
  position: fixed;
  inset: 0;

  background: #202022;
  backdrop-filter: blur(6px);

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* ACTIVE */
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* CLOSE BTN */
.search-close-btn {
  position: absolute;

  top: 18px;
  right: 24px;

  background: transparent;
  border: none;

  color: #fff;

  font-size: 34px;
  font-weight: 300;

  cursor: pointer;

  transition: 0.2s ease;
}

.search-close-btn:hover {
  transform: rotate(90deg);
}

/* BOX */
.search-box {
  width: 100%;
  max-width: 760px;

  padding: 0 40px;

  transform: translateY(30px);
  opacity: 0;

  transition: transform 0.45s ease, opacity 0.45s ease;
}

.search-overlay.active .search-box {
  transform: translateY(0);
  opacity: 1;
}

/* INPUT WRAP */
.search-input-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  padding-bottom: 11px;
}

/* INPUT */
.search-input-wrap input {
  width: 100%;

  background: transparent;
  border: none;
  outline: none;

  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;

  color: #fff;
}

/* PLACEHOLDER */
.search-input-wrap input::placeholder {
  color: #fff;
  opacity: 1;
}

/* SEARCH BTN */
.search-submit-btn {
  width: 34px;
  height: 34px;

  background: transparent;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  flex-shrink: 0;
}

.search-submit-btn img {
  width: 18px;
  filter: brightness(0) invert(1);
}

/* LINKS */
.burger-column a {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  color: #fff;
  text-decoration: none;

  font-weight: 400;

  transition: opacity 0.2s ease;
}

.burger-column a:hover {
  opacity: 0.7;
}

/* ANIMATION */
.burger-column a {
  transform: translateY(20px);

  opacity: 0;

  transition: transform 0.45s ease, opacity 0.45s ease;
}

.burger-menu.active .burger-column a {
  transform: translateY(0);

  opacity: 1;
}

/* DELAYS */
.burger-column a:nth-child(1) {
  transition-delay: 0.05s;
}

.burger-column a:nth-child(2) {
  transition-delay: 0.1s;
}

.burger-column a:nth-child(3) {
  transition-delay: 0.15s;
}

.burger-column a:nth-child(4) {
  transition-delay: 0.2s;
}

.burger-column a:nth-child(5) {
  transition-delay: 0.25s;
}

.burger-column a:nth-child(6) {
  transition-delay: 0.3s;
}

.burger-column a:nth-child(7) {
  transition-delay: 0.35s;
}

/* LANGUAGE */
/* OVERLAY */
.language-overlay {
  position: fixed;

  inset: 0;

  background: rgba(20, 20, 20, 0.45);

  backdrop-filter: blur(3px);

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.28s ease, visibility 0.28s ease;
}

/* ACTIVE */
.language-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL */
.language-modal {
  max-width: 490px;

  background: #fff;

  border-radius: 18px;

  padding: 38px 40px 20px 40px;

  transform: translateY(30px) scale(0.96);

  transition: transform 0.35s ease, opacity 0.35s ease;

  opacity: 0;
}

/* SHOW */
.language-overlay.active .language-modal {
  transform: translateY(0) scale(1);

  opacity: 1;
}

/* TOP */
.language-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 38px;
}

/* TITLE */
.language-top .modal-title {
  font-size: 28px;
  line-height: 1;

  font-weight: 800;

  color: #1a1a1a;
}

/* CLOSE */
.language-close {
  width: 36px;
  height: 36px;

  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 24px;
  line-height: 1;

  color: #2d2d2d;

  border-radius: 50%;

  transition: background 0.2s ease, transform 0.2s ease;
}

.language-close:hover {
  background: #f3f3f3;

  transform: rotate(90deg);
}

/* GRID */
.language-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 10px;
  row-gap: 10px;
}

/* LINKS */
.language-grid a {
  font-size: 16px;
  padding: 10px;
  font-weight: 500;
  color: #1a1a1a;
  border-radius: 8px;
  text-decoration: none;
  width: 110px;
  transition: all 0.2s ease;
}

.language-grid a:hover {
  background-color: #f5f5f5;
}

/* PAGE */
.page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
}

/* LEFT */
.content {
  position: relative;
  padding: 82px 0;
  padding-bottom: 100px;
  min-width: 0;
}

.conten-cont {
  border-bottom: 1px solid #ebebeb;
}

/* MAIN WRAPPER */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 48px 40px minmax(auto, 680px) 1fr;
  padding: 0 16px; //todo
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  height: fit-content;
}

.article-layout .article {
  grid-column: 4;
}

/* LEFT FLOAT ACTIONS */
.article-actions {
  grid-column: 2;
  justify-self: center;
  margin-right: 0;

  padding-top: 0px;

  position: sticky;
  top: 120px;

  height: fit-content;
  align-self: start;
  z-index: 2;
  margin-bottom: 200px;
}

.action-btn {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  background: #f5f5f5;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;

  cursor: pointer;

  transition: 0.2s ease;
}

.action-btn:hover {
  background: #e7e7e7;
}

.likes-count {
  position: absolute;

  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;

  font-size: 10px;
  font-weight: 500;

  color: #2d2d2d;
}

/* ========================================= */
/* LIKE BUTTON */
/* ========================================= */
/* ========================================= */
/* LIKE BUTTON */
/* ========================================= */

.action-btn-like {
  position: relative;
  overflow: visible;
}

/* ACTIVE */
.action-btn-like.active {
  background: #242424;
}

/* ========================================= */
/* ICON */
/* ========================================= */

.action-btn-like>img,
.action-btn-like>svg {
  position: relative;

  z-index: 5;

  margin-bottom: 12px;

  transition: filter 0.35s ease, transform 0.35s ease;
}

/* WHITE ICON */
.action-btn-like.active>img,
.action-btn-like.active>svg {
  filter: brightness(0) invert(1);
}

/* ========================================= */
/* COUNT */
/* ========================================= */

.likes-count {
  position: absolute;

  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;

  font-size: 10px;
  font-weight: 500;

  color: #2d2d2d;

  transition: color 0.35s ease, transform 0.25s ease, opacity 0.25s ease;

  z-index: 5;
}

/* ACTIVE */
.action-btn-like.active .likes-count {
  color: #fff;
}

/* COUNT POP */
.likes-count.bump {
  animation: countPop 0.42s ease;
}

@keyframes countPop {
  0% {
    transform: translateY(3px);
    opacity: 0;
  }

  60% {
    transform: translateY(-2px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========================================= */
/* PRESS */
/* ========================================= */

.action-btn-like.clicked {
  transform: scale(0.96);
}

/* ========================================= */
/* ICON ANIMATION */
/* ========================================= */

.action-btn-like.animate-like>img,
.action-btn-like.animate-like>svg {
  animation: likeIconMove 1.1s cubic-bezier(0.18, 0.85, 0.22, 1);
}

/* ROTATE + TURN EFFECT */
@keyframes likeIconMove {

  /* START */
  0% {
    transform: perspective(120px) rotate(0deg) rotateY(0deg) translate(0, 0) scale(1);
  }

  /* TURN LEFT */
  26% {
    transform: perspective(120px) rotate(-14deg) rotateY(-18deg) translate(-4px, 2px) scale(0.9);
  }

  /* RETURN */
  58% {
    transform: perspective(120px) rotate(2deg) rotateY(6deg) translate(0px, -1px) scale(1.05);
  }

  /* SOFT DROP */
  82% {
    transform: perspective(120px) rotate(0deg) rotateY(0deg) translate(0, 1px) scale(0.99);
  }

  /* FINAL */
  100% {
    transform: perspective(120px) rotate(0deg) rotateY(0deg) translate(0, 0) scale(1);
  }
}

/* ========================================= */
/* BURST */
/* ========================================= */

.like-burst {
  position: absolute;

  top: 2px;
  left: 62%;

  width: 22px;

  transform: translateX(-50%);

  opacity: 0;

  pointer-events: none;

  z-index: 3;
}

/* BURST IMAGE */
.like-burst img,
.like-burst svg {
  width: 17px;
  height: 13px;
  display: block;
}

/* SHOW */
.action-btn-like.animate-like .like-burst {
  animation: burstShow 0.75s cubic-bezier(0.18, 0.85, 0.22, 1) forwards;

  animation-delay: 0.62s;
}

/* BURST ANIMATION */
@keyframes burstShow {
  0% {
    opacity: 0;

    transform: translateX(-50%) translateY(8px) scale(0.5);
  }

  /* APPEAR */
  28% {
    opacity: 1;

    transform: translateX(-50%) translateY(0) scale(1);
  }

  /* HOLD */
  72% {
    opacity: 1;

    transform: translateX(-50%) translateY(-1px) scale(1);
  }

  /* FADE */
  100% {
    opacity: 0;

    transform: translateX(-50%) translateY(-6px) scale(0.92);
  }
}

/* ====================================== */
/* BACKDROP */
/* ====================================== */

.send-modal-backdrop {
  position: fixed;

  inset: 0;

  background: rgba(20, 20, 20, 0.45);

  backdrop-filter: blur(3px);

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.28s ease, visibility 0.28s ease;

  z-index: 99999;
}

/* ACTIVE */
.send-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ====================================== */
/* MODAL */
/* ====================================== */

.send-modal {
  position: fixed;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.92);

  width: 350px;

  background: #fff;

  border-radius: 18px;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1);

  z-index: 999999;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);

  box-sizing: border-box;
}

/* ACTIVE */
.send-modal.active {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, -50%) scale(1);
}

/* ====================================== */
/* HEADER */
/* ====================================== */

.send-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

/* ========================================= */
/* SHARE POPUP */
/* ========================================= */

.popup-share-box {
  width: 350px;

  background: #fff;

  border-radius: 16px;

  padding: 20px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

}

/* ========================================= */
/* HEADER */
/* ========================================= */

.popup-share-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

.popup-share-head h3 {
  font-size: 22px;
  font-weight: 700;

  color: #2d2d2d;
}

/* CLOSE */
.popup-share-close {
  width: 36px;
  height: 36px;

  border: none;
  outline: none;

  background: transparent;

  cursor: pointer;

  font-size: 24px;
  line-height: 1;

  color: #2d2d2d;

  border-radius: 10px;

  transition: background 0.2s ease, transform 0.2s ease;
}

.popup-share-close:hover {
  background: #f3f3f3;
}

/* ========================================= */
/* ROW */
/* ========================================= */

.popup-share-row {
  display: flex;
  align-items: center;
  gap: 14px;

  height: 50px;

  padding: 0 14px;

  background: #f5f5f5;

  border-radius: 14px;

  text-decoration: none;

  margin-bottom: 10px;

  transition: background 0.22s ease, transform 0.22s ease;
}

.popup-share-row:last-child {
  margin-bottom: 0;
}

.popup-share-row:hover {
  background: #eeeeee;
}

/* ========================================= */
/* ICON */
/* ========================================= */

.popup-share-circle {
  width: 28px;
  height: 28px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.popup-share-circle img {
  display: block;
  width: 28px;
  height: 28px;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.popup-share-row span {
  font-size: 15px;
  font-weight: 500;

  color: #2d2d2d;
}

/* TITLE */
.send-modal-top h3,
.send-modal-top p {
  font-size: 28px;
  font-weight: 800;

  line-height: 1;

  color: #1a1a1a;

  margin: 0;
  margin-bottom: 10px;
}

/* ====================================== */
/* CLOSE */
/* ====================================== */

.send-modal-close {
  width: 36px;
  height: 36px;

  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 24px;
  line-height: 1;

  color: #2d2d2d;

  border-radius: 50%;

  transition: background 0.2s ease, transform 0.2s ease;
}

.send-modal-close:hover {
  background: #f3f3f3;

  transform: rotate(90deg);
}

/* ====================================== */
/* ITEM */
/* ====================================== */

.send-modal-item {
  width: 100%;

  border-radius: 14px;

  background: #f5f5f5;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 11px 12px;

  text-decoration: none;

  margin-bottom: 10px;

  box-sizing: border-box;

  transition: background 0.22s ease, transform 0.22s ease;
}

/* LAST */
.send-modal-item:last-child {
  margin-bottom: 0;
}

/* HOVER */
.send-modal-item:hover {
  background: #ebebeb;

  transform: translateY(-1px);
}

/* ====================================== */
/* ICON */
/* ====================================== */

.send-modal-icon {
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  flex-shrink: 0;
}

.send-modal-icon:hover {
  opacity: 0.8;
}

.send-modal-icon:hover img {}

.social-block {
  display: flex;
  gap: 8px;
}

/* IMG */
.send-modal-icon img {
  width: 32px;
  height: 32px;

  object-fit: contain;

  display: block;
}

/* ====================================== */
/* TEXT */
/* ====================================== */

.send-modal-item span {
  font-size: 14px;
  font-weight: 500;

  color: #1a1a1a;

  line-height: 1.2;
}

/* ARTICLE */
.article {
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.block-article,
.block-article2 {
  width: 100%;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}

/* BREADCRUMBS */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;

  margin-bottom: 24px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 14px;
  color: #949494;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
  height: 16px;
}

.breadcrumbs .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d0d0d0;
  flex-shrink: 0;
}

.breadcrumbs span.breadcrumbs-actives {
  display: block;
  color: #c0c0c0 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 0% !important;
  min-width: 0 !important;
  height: 16px;
}

/* META */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 26px;
}

.article-info,
a {
  font-size: 14px;
  color: #949494;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.article-info,
a:hover {
  color: #949494;
}

.article-date {
  display: inline;
}

.date-separator {
  display: inline;
}

.article-author {
  display: inline;
  margin-left: 6px;
}

/* COPY BUTTON */
.copy-link {
  position: relative;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #ebebeb;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  transition: background 0.2s ease, transform 0.2s ease;
}

.copy-link:hover {}

/* ACTIVE */
.copy-link.copied {
  background: #ffffff;
}

/* TOOLTIP */
.copy-tooltip {
  position: fixed;

  background: #1a1a1a;

  color: #fff;

  font-size: 12px;
  font-weight: 400;

  white-space: nowrap;

  padding: 5px 10px;
  width: auto;
  min-width: 122px;
  box-sizing: border-box;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.2s ease, visibility 0.2s ease;

  pointer-events: none;
  z-index: 9999;
}

.copy-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

/* SHOW ON HOVER */
.copy-link:hover .copy-tooltip {
  opacity: 1;
  visibility: visible;
}

/* SOURCE */
.article-source,
.article-source p {
  font-size: 12px;
  color: #c0c0c0 !important;
  display: block;
  margin-top: 14px;
  margin-bottom: 20px;
}

/* YOUTUBE */
.youtube-player {
  width: 100%;
  display: block;
}

/* TEXT */
.article-text {
  font-size: 18px;
  line-height: 1.72;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-text b,
.article-text strong {
  font-weight: bold;
}

.article_div.recipe b,
.article_div.recipe strong {}

.article-text i {
  font-style: italic;
  font-family: sans-serif;
}

.article-text-sm {
  margin-bottom: 20px !important;
}

.article-text-lg {
  margin-bottom: 28px !important;
}

.image-sticky-wrap {
  /* position: relative; */

  margin-bottom: 18px;
}

.main-bg {
  width: 100%;
  display: block;
  border-radius: 18px;
  margin-bottom: 16px;
}

.main-bg img,
.post__img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.recipe-v1 .main-bg img,
.recipe .main-bg img,
.recipe-v1 .post__img,
.recipe .post__img {
  aspect-ratio: 16 / 9;
}

/* IMAGE WRAP */
.article-image-wrap {
  position: relative;
}

/* COOKIE */
.cookie-box {
  position: fixed;

  left: 50%;
  bottom: 12px;

  transform: translateX(-50%);

  z-index: 9999;
  width: 340px;

  z-index: 10;

  background: #1f1f23;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 4px 12px;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);

  transition: opacity 0.25s ease, transform 0.25s ease;
  /* display: none; */
}

.cookie-minimized-icon {
  display: none;
}

body.has-sidebar .cookie-box {
  left: calc((100% - 212px) / 2);
  padding-right: 0;
}

.cookie-left {
  padding: 14px 10px;
}

/* HIDE */
.cookie-box.hide {
  opacity: 0;
  visibility: hidden;

  transform: translateX(-50%) translateY(20px);
}

/* MINIMIZED (MOBILE ONLY) */
@media (max-width: 660px) {
  .cookie-box.minimized {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    left: auto;
    right: 16px;
    bottom: 16px;
    transform: none;
    cursor: pointer;
    background-color: #1f1f23;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cookie-box.minimized>*:not(.cookie-minimized-icon) {
    display: none !important;
  }

  .cookie-box.minimized .cookie-minimized-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}

/* LEFT */
.cookie-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-left img {
  width: 22px;
  height: 22px;
}

/* TEXT */
.cookie-text {
  display: flex;
  flex-direction: column;
}

.cookie-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.1;
}

.cookie-text a {
  font-size: 14px;
  color: #5a8dbc;
  text-decoration: none;
  margin-top: 3px;
}

/* DIVIDER */
.cookie-divider {
  width: 1px;
  height: 36px;

  background: rgba(255, 255, 255, 0.12);
}

/* RIGHT CELL */
.cookie-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BUTTON */
.cookie-btn {
  background: transparent;
  border: none;

  color: #fff;

  font-size: 15px;
  font-weight: 500;
  padding: 15px 13px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}

.cookie-btn:hover {
  background: #1a1a1a;
}

/* IMAGE WRAP */
.article-image-wrap {
  position: relative;
}

.content-inner {
  max-width: 760px;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 26px;
  font-weight: 800;
  line-height: 56px;
  overflow-wrap: break-word;
  word-break: break-word;
  color: #1a1a1a;
}

.content p {
  line-height: 1.7;
  color: #1a1a1a;
  /* margin-bottom: 24px; */
}

.article-title-large {
  overflow-wrap: break-word;
  word-break: break-word;
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 26px;
  line-height: 44px;
  margin-top: 44px;
}

.article-title-small {
  overflow-wrap: break-word;
  word-break: break-word;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 32px;
  display: block;
}

/* RIGHT SIDEBAR */
.sidebar {
  width: 300px;
  border-left: 1px solid #ebebeb;
  background-color: #fff;
  position: relative;
}

/* STICKY SIDEBAR INNER */
.sidebar-inner {
  position: sticky;
  top: 67px;
  padding-top: 82px;
  padding-bottom: 120px;
  box-sizing: border-box;
  /* top управляется через JS для эффекта движения */
}

/* Баннер */
.sidebar-banner-300x600 {
  margin-top: 32px;
  width: 300px;
  height: 600px;
  display: block;
  overflow: hidden;
}

/* Баннер зафиксирован вверху (через JS задаётся right) */
.sidebar-banner-300x600.banner-is-sticky {
  position: fixed;
  top: 82px;
}

body.dark-theme .sidebar-banner-300x600 {
  background-color: #1a1a1a;
  border: 1px solid #262626;
}

.sidebar-banner-300x600 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar h3 {
  font-size: 18px;
  font-weight: 600;
  padding: 0 25px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.popular-item {
  padding: 16px 25px 0;
  transition: all 0.3s;
}

.popular-item .item-link-lg {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
  font-weight: 500;
}

.popular-likes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.popular-likes-icon {
  width: 12px;
  height: 13px;
  opacity: 0.4;
  vertical-align: middle;
}

.popular-likes-count {
  font-size: 12px;
  color: #949494;
  font-weight: 500;
  vertical-align: middle;
  font-weight: 400;
}

.popular-title {
  font-weight: 800;
  margin: 0;
  padding-left: 25px;
  margin-bottom: 14px;
}

.item-link-sm {
  display: block;
  text-decoration: none;
  font-size: 13px;
  color: #949494;

  margin-bottom: 8px;
  transition: all 0.3s ease-in;
}

.item-link-sm:hover {
  color: #000000;
}

.item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 8px;
}

.item-link-lg {
  font-size: 16px;
  line-height: 1.46;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease-in;
}

.item-link-lg:hover {
  color: #1a1a1a;
}

.popular-item:hover {}

.recipes-block {
  margin-bottom: 28px;
}

.recipes-block p {
  margin-bottom: 8px !important;
}

.recipes-block p:last-child {
  margin-bottom: 0;
}

ul.recipes-block.post__ul,
.hrecipe ul,
.recipe-v1 ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 28px;
}

ul.recipes-block.post__ul li,
.hrecipe ul li,
.recipe-v1 ul li {
  position: relative;
  padding-left: 23px;
  font-size: 18px;
  line-height: 1.72;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 8px !important;
}

ul.recipes-block.post__ul li:last-child,
.hrecipe ul li:last-child,
.recipe-v1 ul li:last-child {
  margin-bottom: 0 !important;
}

ul.recipes-block.post__ul li::before,
.hrecipe ul li::before,
.recipe-v1 ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: 600;
  color: #1a1a1a;
}

.lits-recipes,
.hrecipe ol,
.recipe-v1 ol {
  margin-left: 25px;
  margin-bottom: 40px;
}

.lits-recipes li,
.hrecipe ol li,
.recipe-v1 ol li {
  list-style: decimal;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 12px;
}

.lits-recipes li::marker,
.hrecipe ol li::marker,
.recipe-v1 ol li::marker {
  font-weight: 600;
}

.card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 20px 0;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 40px;
}

.card__image-wrap {
  width: 180px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.8s ease;
}

.card:hover .card__image {
  transform: scale(1.06);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 40px;
}

.card__category {
  font-size: 12px;
  color: #949494;
  font-weight: 400;
  margin-bottom: 0;
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a !important;
  line-height: 1.3 !important;
}

.block-attantion {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.choosing-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 40px;
}

.choosing-block a {
  color: #1a1a1a;
  padding: 12px 14px;
  font-size: 13px;
  display: flex;
  background-color: #f5f5f5;
  border-radius: 25px;
}

.choosing-block a:hover {
  background-color: #e7e7e7;
}

.end-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.left-end-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article {
  /* position: relative; */
}

.end-block p {
  font-weight: 800;
}

.forwards-block img,
.forwards-block svg {
  padding: 10px 14px 10px 16px;
  border-radius: 12px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.forwards-block img:hover,
.forwards-block svg:hover {
  background-color: #eeeeee;
}

.like-block {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 11px;
  border-radius: 8px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.like-block span {
  font-size: 10px;
  font-weight: 600;
}

.like-block:hover {
  background-color: #eeeeee;
}

/* BLOCK */
.share-block {
  position: relative;

  padding: 28px 0;
}

/* bottom line */
.share-block::after {
  content: "";

  position: absolute;

  bottom: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 100vw;
  height: 1px;

  background: #e8e8e8;
}

.article-layout-second {
  padding-top: 80px;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid #ebebeb;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-wrap .sitename {
  font-size: 16px;
  color: #949494;
}

.footer-wrap span {
  font-size: 16px;
  color: #949494;
}

.footer-wrap p {
  color: #949494;
  max-width: 836px;
  line-height: 160%;
}

.links-footer {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.links-footer a {
  font-size: 16px;
  color: #1a1a1a;
  text-decoration: none;
}

.links-footer a:hover {
  color: #676767;
}

.stories-slider {
  display: none;
}

.container-sm {
  max-width: 1345px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Category */
.article-layout-category {
  display: flex;
  justify-content: center;
  padding: 0 16px; //todo
  max-width: 862px;
  gap: 62px;
  margin: 0 auto;
}

.content-category {
  padding-top: 72px;
}

.article-title-category {
  margin-bottom: 40px !important;
}

.main-bg-category {
  overflow: hidden;
  border-radius: 18px;
}

.main-bg-category img {
  width: 100%;
  aspect-ratio: 16/9;

  object-fit: cover;
  display: block;

  border-radius: 18px;

  transition: transform 0.8s ease;
}

/* HOVER */
.main-bg-category:hover img {
  transform: scale(1.06);
}

.category-title-block {
  margin-bottom: 32px;
}

.category-title-large {
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 15px;
  margin-top: 26px;
}

.date-category {
  font-size: 12px;
  color: #949494;
}

.card-category {
  align-items: flex-start;
  margin-bottom: 0px;
  border-bottom: none;
}

.card__category-data {
  font-size: 12px;
  color: #949494;
  font-weight: 400;
  margin-bottom: 12px;
}

.card-bloks-second {
  margin-bottom: 78px;
}

/* ========================================= */
/* PAGINATION */
/* ========================================= */

.pagination {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 48px;
}

/* LINKS */
.pagination-link {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;

  color: #1a1a1a;

  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

/* HOVER */
.pagination-link:hover {
  background: #f5f5f5;
  color: #333;
}

/* ACTIVE */
.pagination-link.active {
  background: #f5f5f5;
}

/* PRESS */
.pagination-link:active {
  transform: scale(0.95);
}

/* DOTS */
.pagination-dots {
  font-size: 16px;
  color: #8f8f8f;

  padding: 0 4px;
}

.block-article {
  margin-bottom: 22px;
}

.block-article2 {
  margin-top: 80px;
}

.article-layout-related .article-actions {
  margin-top: 75px;
}

.action-btn2 {
  margin-bottom: 0 !important;
  width: auto;
  min-width: 48px;
  height: 40px;
  /* padding: 11px; */
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  box-sizing: border-box;
}

.action-btn2 .likes-count {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  display: inline-block;
}

.action-btn2 .like-burst {
  top: 5px;
  left: 55%;
}

.action-btn2-img {
  width: 16px;
  height: 16px;
  margin-bottom: 0px !important;
  margin-left: 0px;
}

.article-divider {
  grid-column: 1 / -1;
  border: none;
  margin: 20px 0;
  width: 100%;
  height: 0px;
  position: static;
}

.article-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #ebebeb;
}

/* ========================================= */
/* SIDEBAR */
/* ========================================= */

.tips-sidebar {
  width: 100%;
  max-width: 250px;

  padding: 11px 14px 30px;
}

/* TITLE */
.tips-sidebar-title {
  font-size: 18px;
  font-weight: 600;

  color: #1a1a1a;

  margin-bottom: 16px;
}

/* ========================================= */
/* FEATURED CARD */
/* ========================================= */

.tips-featured-card {
  display: flex;
  gap: 12px;

  text-decoration: none;

  padding: 20px 0;
}

.tips-card-img {
  width: 86px;
  height: 86px;

  overflow: hidden;

  border-radius: 8px;

  flex-shrink: 0;
}

.tips-card-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  border-radius: 8px;

  transition: transform 0.2s ease;
}

/* HOVER */
.tips-card-img:hover img {
  transform: scale(1.08);
}

.tips-featured-content {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;

  color: #1a1a1a;
}

/* ========================================= */
/* SIMPLE LINK */
/* ========================================= */

.tips-link {
  display: block;

  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;

  color: #1a1a1a;
  padding: 20px 0;
  position: relative;

  transition: all 0.2s ease;
}

.tips-link1 {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 20px 0;
}

.tips-link:hover {
  color: #1a1a1a;
  background-color: #f5f5f5;
  width: 100%;
}

/* ========================================= */
/* BIG IMAGE CARD */
/* ========================================= */

.tips-image-card {
  position: relative;

  display: block;

  width: 250px;

  height: 167px;

  border-radius: 8px;

  overflow: hidden;
}

.tips-image-card {
  position: relative;

  overflow: hidden;

  border-radius: 12px;
}

.tips-image-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* FULL DARK OVERLAY */
.tips-image-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: 1;
}

.tips-image-overlay {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 12px;
  z-index: 100;
  color: #fff;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

/* ========================================= */
/* SMALL CARD */
/* ========================================= */

.tips-small-card {
  display: flex;
  gap: 12px;

  text-decoration: none;

  margin-bottom: 22px;
}

.tips-small-card img {
  width: 74px;
  height: 74px;

  border-radius: 12px;

  object-fit: cover;

  flex-shrink: 0;
}

.tips-small-content {
  font-size: 14px;
  line-height: 1.35;

  color: #1a1a1a;
}

.main-block-cont {
  display: flex;
  justify-content: space-around;
}

.article-layout-tips {
  display: flex;
  margin: unset;
  max-width: unset;
}

.article-tips {
  max-width: 800px;
}

.page-tids {
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: #949494;
  margin-bottom: 4px;
  line-height: 1;
}

.tag--baking {
  color: #fff;
  padding: 2px 5px;
  position: absolute;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 12px;
  border-radius: 2px;
}

.tag--main {
  color: #fff;
  padding: 2px 5px;
  border-radius: 2px;
}

.tag--dinner {
  background: #4a9fd4;
  color: #fff;
  padding: 2px 5px;
  border-radius: 2px;
}

.tag--white {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 2px 5px;
  border-radius: 2px;
}

/* ===== CARD TITLE SIZES ===== */
.title-hero {
  font-size: 28px !important;
  font-weight: 700;
  line-height: 120% !important;
  letter-spacing: -0.6px !important;
  margin-bottom: 15px !important;
}

.title-side {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.title-grid {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
}

.date {
  font-size: 10.5px;
  color: #949494;
}

/* ===== HERO SECTION ===== */
.hero {
  display: grid;
  /* grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); */
  gap: 8px;
  margin-bottom: 46px;
}

/* Left big card */
.hero-main {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  max-width: 520px;
  flex-direction: column;
}

.main-bg-tids {
  /* width: 521px; */
  /* height: 293px; */
  overflow: hidden;
  border-radius: 8px;
}

.main-bg-tids img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.main-bg-tids:hover img {
  transform: scale(1.08);
}

.hero-main .card-body {
  padding-top: 8px;
}

/* Right stacked cards */
.hero-side-1 {
  grid-column: 2;
  grid-row: 1;
  max-width: 250px;
}

.hero-side-2 {
  grid-column: 2;
  grid-row: 2;
  max-width: 250px;
}

.side-card-1 {
  /* width: 250px; */
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
}

.side-card-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.7s ease;
}

.side-card-1:hover img {
  transform: scale(1.08);
}

.side-card-big {
  position: relative;

  overflow: hidden;
}

/* FULL DARK OVERLAY */
.side-card-big::before {
  content: "";

  position: absolute;

  inset: 0;
  /* width: 250px; */
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
  z-index: 1;
}

.card-body-big {
  position: absolute;

  left: 0;
  bottom: 0;

  padding: 12px;
  z-index: 10;
  color: #fff;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.title-side-big {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  max-width: 226px;
}

.side-card-2 {
  /* width: 250px;*/
  height: 240px;
}

.side-card-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.side-card {
  display: flex;
  flex-direction: column;
}

/* .side-card img {
  height: 95px;
} */
.side-card .card-body {
  margin-top: 12px;
}

/* ===== ARTICLE GRID ===== */
.grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px; */
}

.grid-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

/* Standard card */
.card-std {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.card-big {
  margin-bottom: 28px;
}

/* .card-std img {
  height: 108px;
} */
.card-std2 {
  margin-bottom: 0 !important;
}

.card-std .card-body {
  margin-top: 12px;
}

/* Overlay card (normal col width, text over dark gradient) */
.card-overlay {
  position: relative;
  overflow: hidden;
}

/* .card-overlay img {
  height: 140px;
} */
.card-overlay .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 7px 7px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-overlay .title-grid {
  color: #fff;
  font-size: 12px;
}

/* Section divider */
.section-label {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 4px;
}

/* ========================================= */
/* DARK THEME */
/* ========================================= */
.block-article {}



body.dark-theme .tips-sidebar .tips-sidebar-title {
  color: #fff;
}

body.dark-theme .sidebar {
  background-color: #000;
  border-left: 1px solid #262626;
}

body.dark-theme .article-divider::after {
  background: #262626;
}

body.dark-theme .popular-item .item-link-lg {
  border-bottom: 1px solid #262626;
}

body.dark-theme .popular-likes-icon {
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

body.dark-theme .popular-likes-count {
  color: #c4c7c5;
}

body.dark-theme .tips-sidebar .tips-featured-content {
  color: #c4c7c5;
}

body.dark-theme .tips-sidebar .tips-link1 {
  border-top: 1px solid #3c3c3c;
  border-bottom: 1px solid #3c3c3c;
}

body.dark-theme .footer {
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

body.dark-theme .tips-sidebar .tips-link {
  color: #fff;
}

body.dark-theme .story-card h3 {
  color: #fff;
}

body.dark-theme .tips-stories-title {
  color: #949494;
}

body.dark-theme .side-card .title-side {
  color: #fff;
}

body.dark-theme .tips-sidebar .tips-link:hover {
  background-color: #1a1a1a;
}

body.dark-theme .pagination-link:hover {
  background: #1f1f1f;
}

body.dark-theme .hero-main .title-hero {
  color: #fff;
}

body.dark-theme .grid-block .title-side {
  color: #fff;
}

body.dark-theme .pagination-link.active {
  background: #242424;
}

body.dark-theme .pagination-dots {
  color: #949494;
}

body.dark-theme .block-attantion {
  filter: brightness(0) invert(1);
}

.hero-side-mob-1 {
  display: none;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* CONTENT */
.error-page-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

/* 404 */
.error-code {
  font-size: 96px !important;
  font-weight: 600;
  color: #1a1a1a;

  margin-bottom: 18px;
}

/* TITLE */
.error-page-content h3 {
  margin: 0 0 16px;

  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;

  color: #1a1a1a;
}

/* TEXT */
.error-page-content span {
  margin: 0 0 62px;

  font-size: 17px;
  font-weight: 400;

  color: #1a1a1a;
}

/* BUTTON */
.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 40px;

  border-radius: 30px;

  background: #202022;

  color: #fff;

  font-size: 18px;
  font-weight: 500;

  text-decoration: none;

  transition: background 0.25s ease, transform 0.2s ease;
}

/* HOVER */
.error-btn:hover {
  background: #585858;
  color: #fff;
  transform: translateY(-2px);
}

.dark-theme .error-page {}

/* 404 */
.dark-theme .error-code {
  color: #ffffff;
}

/* TITLE */
.dark-theme .error-page-content h3 {
  color: #ffffff;
}

/* TEXT */
.dark-theme .error-page-content span {
  color: #ffffff;
}

/* BUTTON */
.dark-theme .error-btn {
  background: #ffffff;

  color: #1a1a1a111;
}

/* HOVER */
.dark-theme .error-btn:hover {
  background: #e9e9e9;
}

/* RESPONSIVE */
/*
@media (max-width: 1414px) {
  .side-card-1 {
    width: 100%;
  }
}

@media (max-width: 1280px) {
  .grid-block {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1230px) {
  .footer-wrap p {
    max-width: 650px;
  }
}

@media (max-width: 1192px) {
  .nav ul {
    gap: 4px;
  }
}
*/
@media (max-width: 1150px) {

  /* =========================
     LAYOUT
  ========================= */

  .page {
    display: block;
    width: 100%;
  }

  .article-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .article-layout .article {
    margin: auto;
  }

  .article-layout-category {
    justify-content: center;
    gap: 0px !important;
  }

  .article-layout-second {
    padding-top: 50px;
  }

  .article-layout-tips {
    display: unset !important;
    max-width: unset !important;
    padding: 0 !important;
  }

  .content {
    padding: 43px 24px 40px;
    padding-right: 0;
    padding-left: 0;
  }

  .content-main-tips {
    padding: 0 24px;
  }

  .sidebar {
    display: none;
  }

  .tips-sidebar {
    display: none;
  }

  .main-block-cont-tids {
    display: unset;
  }

  .page-main-tids {
    display: unset;
  }

  .article-actions {
    grid-column: 1;
    justify-self: auto;
    margin-right: 0;
    display: none;
  }

  .article {
    max-width: 680px;
  }

  .article-divider {
    margin: 6px 0;
  }

  .article-divider::after {
    left: 16px;
    right: 16px;
  }

  /* =========================
     HEADER / NAV
  ========================= */

  .header {
    /* position: sticky; top: 0 — наследуется из десктопного CSS */
    padding: 7px 0;
    border-bottom: 1px solid #ebebeb;
    background: #fff;
  }




  .header-wrapper {
    flex-wrap: wrap;
  }

  .header-actions {
    order: 2;
  }

  .logo {
    order: 1;
    margin-left: 5px;
  }

  .header-left {
    order: 1;
    display: flex;
    align-items: center;
  }

  .header-left .burger-btn {
    display: flex;
  }

  .nav--desktop {
    display: none !important;
  }

  .burger-desktop {
    display: none !important;
  }

  .header .main-container {
    padding-right: 5px;
  }

  .header-nav-mobile {
    display: block;
  }

  .header-nav-mobile .nav {
    display: flex !important;
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    border-bottom: 1px solid #ececec;
    scrollbar-width: none;
  }

  .header-nav-mobile .nav .nav {
    border: 0;
  }

  .header-nav-mobile .nav ul {
    display: flex !important;
    align-items: center;
    gap: 0;
    width: max-content;
    height: 45px;
    padding: 0 8px !important;
    list-style: none;
  }

  .header-nav-mobile .nav ul li {
    padding: 0 !important;
    margin: 0 !important;
  }

  .header-nav-mobile .nav ul li:first-child {
    padding-left: 13px !important;
  }

  .header-nav-mobile .nav ul li.nav-item--mobile-only {
    display: block !important;
  }

  .header-nav-mobile .nav ul li.nav-item--more {
    display: none !important;
  }

  .header-nav-mobile .nav .nav-link {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #2d2d2d;
    text-decoration: none;
    padding: 12px 12px !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .header-nav-mobile .nav .nav-link.active {
    color: #000;
    font-weight: 600;
    background: transparent !important;
  }

  .header-nav-mobile .nav::-webkit-scrollbar {
    display: none;
  }

  #openLanguageModal {
    display: none;
  }

  /* =========================
     BURGER MENU
  ========================= */

  .burger-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px !important;
    padding: 28px 20px;
    overflow-y: auto;
  }

  .burger-column a {
    font-size: 20px;
  }

  /* =========================
     GRID / CARDS
  ========================= */

  .grid-block {
    grid-template-columns: 1fr 1fr;
  }

  .card {
    margin-bottom: 0px;
  }

  .card__image-wrap {
    width: 100px;
    height: 100px;
  }

  .card__body {
    padding-right: 0;
  }

  .full-disk {
    display: none;
  }

  .full-mob {
    display: flex;
    justify-content: center;
    max-width: 100%;
  }

  .hero-main {
    max-width: 100%;
  }

  .hero-side-desk {
    display: none;
  }

  .hero-side-mob-1 {
    display: flex;
    max-width: 100%;
  }

  .side-card-mob-2 {
    height: 303px;
  }

  /* =========================
     STORIES SLIDER
  ========================= */

  .stories-slider {
    display: block;
    width: 100%;
    padding: 20px 0 25px 0;
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    background: #fff;
  }

  .stories-slider-tips {
    margin-bottom: 52px;
    margin-top: 11px;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    border-top: 1px solid #ececec !important;
    border-bottom: 1px solid #ececec !important;
  }

  .stories-slider+.page .content {
    padding-top: 16px;
  }

  .stories-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    padding: 0 16px;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .stories-track::-webkit-scrollbar {
    display: none;
  }

  .stories-track:active {
    cursor: grabbing;
  }

  .story-card {
    max-width: 250px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .story-card img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
  }

  .story-card:hover p {
    opacity: 0.7;
  }

  .story-content {
    display: flex;
    flex-direction: column;
    padding-top: 2px;
  }

  .story-content p {
    font-size: 13px;
    line-height: 1.4;
    color: #1a1a1a;
  }

  .story-content span {
    font-size: 12px;
    line-height: 1;
    color: #949494;
    margin-bottom: 4px;
  }

  .story-content-tips {
    font-weight: 700;
    font-size: 14px;
    max-width: 250px;
    color: #1a1a1a;
    line-height: 1.4;
  }

  .tips-stories-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 0 25px;
    margin-bottom: 12px;
  }

  /* =========================
     TYPOGRAPHY
  ========================= */

  .content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 115%;
  }

  .article-title {
    font-size: 42px;
  }

  .article-title-large {
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 120%;
  }

  .article-title-category {
    margin-bottom: 32px !important;
  }

  .article-text {
    margin-bottom: 20px;
  }

  .article-text-lg {
    margin-bottom: 20px !important;
  }

  .article-meta {
    margin-bottom: 20px;
  }

  .article-info {
    display: block;
  }

  .article-author {
    display: block;
    margin-top: 4px;
    margin-left: 0;
  }

  .date-separator {
    display: none;
  }

  .article-source {
    font-size: 12px;
  }

  .title-hero {
    font-size: 20px !important;
  }

  .title-side {
    font-size: 13px;
  }

  .breadcrumbs a,
  .breadcrumbs span,
  .article-info {
    font-size: 13px;
    line-height: 1.2;
  }

  .content p,
  ul.recipes-block.post__ul li,
  .lits-recipes li {
    font-size: 17px;
  }

  .lits-recipes {
    margin-left: 25px;
    margin-bottom: 28px;
  }

  .recipes-block {
    margin-bottom: 20px;
  }

  .block-article2 {
    margin-top: 54px;
  }

  .category-title-large {
    margin-top: 24px;
  }

  /* =========================
     FOOTER
  ========================= */

  .footer {
    padding: 28px 0;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-wrap p {
    max-width: 550px;
    font-size: 15px;
    line-height: 150%;
  }

  .footer-wrap p span {
    font-size: 14px;
  }

  .footer-wrap span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    margin: 0;
  }

  .links-footer a {
    font-size: 15px;
  }

  .pagination {
    margin-top: 24px;
  }

  /* =========================
     ERROR PAGE
  ========================= */

  .error-code {
    font-size: 72px !important;
  }

  .error-page-content h3 {
    font-size: 34px !important;
  }

  /* =========================
     LANGUAGE MODAL
  ========================= */

  .language-modal {
    width: calc(100% - 32px);
    padding: 28px 24px 32px;
    overflow-y: scroll;
    height: 400px;
  }

  .language-top .modal-title {
    font-size: 24px;
  }

  .language-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .language-grid a {
    font-size: 16px;
  }

  /* =========================
     COOKIES
  ========================= */

  .cookie-box {
    left: 50%;
    display: flex;
    box-sizing: border-box;
    padding: 0;
  }

  .cookie-box .ce-accept {
    padding: 13px 20px !important;
  }

  /* =========================
     MISC
  ========================= */

  .end-block {
    margin-bottom: 50px;
  }

  ul.recipes-block.post__ul li::before {
    top: 0;
  }

}

.full-mob {
  display: none;
}

/* Р’РђР–Р›Р˜Р’Рћ */

/* СЏРєС‰Рѕ С” swiper / slider */
.stories-track,
.slider,
.cards-row {}

/* ====================================== */
/* MOBILE */
/* ====================================== */

/* =========================
   THEME BUTTON
========================= */

.theme {
  cursor: pointer;
}

body.no-transitions,
body.no-transitions * {
  transition: none !important;
}

/* =========================
   DARK THEME
========================= */

body.dark-theme {
  background: #000;
  color: #fff;
}

/* HEADER */

body.dark-theme .header {
  background: #000;
  border-bottom: 1px solid #161616;
}

body.dark-theme .nav-link {
  color: #fff;
}

body.dark-theme .nav-link.active {
  background: #1a1a1a;
  color: #fff;
}

body.dark-theme .nav-link:hover {
  background: #1a1a1a;
}

/* Dark theme: mobile nav */
body.dark-theme .header-nav-mobile .nav {
  border-bottom-color: #262626;
}

body.dark-theme .header-nav-mobile .nav .nav-link {
  color: #fff;
}

body.dark-theme .header-nav-mobile .nav .nav-link.active {
  color: #fff;
}

/* ICONS */

body.dark-theme .icon-btn img,
body.dark-theme .icon-btn svg,
body.dark-theme .action-btn img,
body.dark-theme .action-btn svg,
body.dark-theme .copy-link img,
body.dark-theme .copy-link svg,
body.dark-theme .like-block img,
body.dark-theme .like-block svg,
body.dark-theme .forwards-block img,
body.dark-theme .forwards-block svg {
  filter: brightness(0) invert(1);
}

body.dark-theme .stories-slider {
  background-color: #000;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

body.dark-theme .copy-link:hover img,
body.dark-theme .copy-link:hover svg {
  filter: brightness(0);
}

body.dark-theme .logo img,
body.dark-theme .logo svg {
  filter: brightness(0) invert(1);
}

body.dark-theme .language-close {
  color: #fff;
}

body.dark-theme .language-close:hover {
  background-color: #262626;
}

body.dark-theme .copy-link:hover {
  background: #f5f5f5;
}

body.dark-theme .popular-item:hover {
  background-color: #1a1a1a;
}

body.dark-theme .language-grid a {
  color: #fff;
}

body.dark-theme .language-top .modal-title {
  color: #fff;
}

body.dark-theme .sidebar h3 {
  color: #fff;
}

body.dark-theme p,
span h3,
h4,
h5,
h6 {
  color: #fff;
}

body.dark-theme .links-footer a {
  color: #fff;
}

body.dark-theme .footer-wrap span {
  color: #fff;
}

body.dark-theme .links-footer a:hover {
  color: #676767;
}

/* TITLES */

body.dark-theme .article-title,
body.dark-theme .article-title-large,
body.dark-theme .article-title-small,
body.dark-theme .popular-title,
body.dark-theme .card__title,
body.dark-theme .end-block p {
  color: #fff;
}

/* TEXT */

body.dark-theme .article-text,
body.dark-theme .article-info,
body.dark-theme .article-source,
body.dark-theme .breadcrumbs a,
body.dark-theme .breadcrumbs span,
body.dark-theme .popular-item a,
body.dark-theme .popular-item span,
body.dark-theme .likes-count,
body.dark-theme .like-block span,
body.dark-theme ul.recipes-block.post__ul li,
body.dark-theme ul.recipes-block.post__ul li::before {
  color: #fff;
}

body.dark-theme .popular-item .item-link-sm {
  color: #c4c7c5;
}

body.dark-theme .popular-item .item-link-sm:hover {
  color: #585858;
}

body.dark-theme .card .card__body p {
  color: #fff !important;
}

body.dark-theme .popular-item .item-link-lg:hover {
  color: #676767;
}

body.dark-theme .dropdown-toggle img,
body.dark-theme .dropdown-toggle svg {
  filter: brightness(0) invert(1);
}

/* SIDEBAR */

.dark-theme .icon-btn:hover {
  background: #f5f5f5;
}

/* робимо svg/img чорними */
.dark-theme .icon-btn:hover img,
.dark-theme .icon-btn:hover svg {
  filter: brightness(0);
}

/* СЏРєС‰Рѕ svg С‡РµСЂРµР· mask/background */
.dark-theme .icon-btn:hover svg {
  stroke: #000;
  fill: #000;
}

body.dark-theme .sidebar {
  border-left: 1px solid #161616;
}

body.dark-theme .conten-cont {
  border-bottom: 1px solid #161616;
}

body.dark-theme .choosing-block span {
  background: #151515;
  color: #fff;
}

/* ACTION BUTTONS */

body.dark-theme .action-btn {
  background: #161616;
}

body.dark-theme .action-btn2 {
  background: #000;
}

/* body.dark-theme .action-btn:hover {
  background: #202020;
} */

/* COPY BUTTON */

body.dark-theme .copy-link {
  border: 1px solid #262626;
}

/* DROPDOWN */

body.dark-theme .dropdown-menu {
  background: #1a1a1a;
  border: 1px solid #1c1c1c;
}

body.dark-theme .dropdown-menu a {
  color: #fff;
}

body.dark-theme .dropdown-menu a:hover {
  background: #1a1a1a;
}

/* POPUPS */

body.dark-theme .language-modal,
body.dark-theme .forward-popup,
body.dark-theme .copy-tooltip {
  background: #1a1a1a;
  color: #fff;
}

body.dark-theme .language-item,
body.dark-theme .forward-link {
  color: #fff;
}

body.dark-theme .forward-link {
  background: #1a1a1a;
}

body.dark-theme .send-modal.active {
  background-color: #262626;
}

body.dark-theme .send-modal-close {
  color: #fff;
}

body.dark-theme .send-modal-close:hover {
  background-color: #262626;
}

body.dark-theme .send-modal-top h3,
body.dark-theme .send-modal-top p {
  color: #fff;
}



/* CARDS */

body.dark-theme .card {
  background: unset;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

/* SCROLL */

body.dark-theme ::-webkit-scrollbar {
  width: 10px;
}

body.dark-theme ::-webkit-scrollbar-track {
  background: #050505;
}

body.dark-theme ::-webkit-scrollbar-thumb {
  background: #1d1d1d;
  border-radius: 20px;
}

/* ========================================= */
/* DARK THEME LIKE BUTTON */
/* ========================================= */

.dark-theme .action-btn-like {
  background: #242424;
}

/* HOVER */
.dark-theme .action-btn-like:hover {
  background: #303030;
}

/* ========================================= */
/* ICON */
/* ========================================= */

.dark-theme .action-btn-like>img {
  filter: brightness(0) invert(1);
}

.dark-theme .action-btn-like .like-burst>img {
  filter: brightness(0);
}

/* ========================================= */
/* COUNT */
/* ========================================= */

.dark-theme .likes-count {
  color: #fff;
}

/* ========================================= */
/* ACTIVE */
/* ========================================= */

.dark-theme .action-btn-like.active {
  background: #f4f4f4;
}

.dark-theme .action-btn-forwards:hover {
  background: #f4f4f4;
}

.dark-theme .action-btn-forwards:hover img,
.dark-theme .action-btn-forwards:hover svg {
  filter: brightness(0) !important;
}

/* ICON ACTIVE */
.dark-theme .action-btn-like.active>img,
.dark-theme .action-btn-like.active>svg {
  filter: brightness(0);
}

/* COUNT ACTIVE */
.dark-theme .action-btn-like.active .likes-count {
  color: #1a1a1a;
}

/* ========================================= */
/* BURST */
/* ========================================= */

.dark-theme .like-burst img {
  filter: brightness(0);
}

/* ========================================= */
/* PRESS EFFECT */
/* ========================================= */

.dark-theme .action-btn-like.clicked {
  transform: scale(0.96);
}

/* ========================================= */
/* SMOOTH TRANSITIONS */
/* ========================================= */

.dark-theme .action-btn-like,
.dark-theme .action-btn-like>img,
.dark-theme .likes-count,
.dark-theme .like-burst img {
  transition: background 0.35s ease, color 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

/* ==========================================================================
   ADDED SYSTEM OVERLAYS AND BANNERS (SEARCH, MOBILE MENU, COOKIES, PWA BANNER)
   ========================================================================== */

/* CLOSE BUTTONS */
.modalMobileMenuClose,
.modalSearchClose {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
}

.modalMobileMenuClose::before,
.modalMobileMenuClose::after,
.modalSearchClose::before,
.modalSearchClose::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: #333;
}

.modalMobileMenuClose::before,
.modalSearchClose::before {
  transform: rotate(45deg);
}

.modalMobileMenuClose::after,
.modalSearchClose::after {
  transform: rotate(-45deg);
}

/* SEARCH MODAL */
.modalSearch {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  visibility: hidden;
  height: 100vh;
  padding-top: 35vh;
  opacity: 0;
  background-color: #ffffff;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modalSearch--isVisible {
  visibility: visible;
  opacity: 1;
}

.modalSearchForm {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 0 1.5rem;
  color: #222222;
  align-items: center;
  justify-content: center;
}

.modalSearchForm__wrapper {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 737px;
}

.modalSearchForm__input {
  box-sizing: border-box;
  width: 100%;
  padding: 15px 45px 15px 15px;
  letter-spacing: 0.02em;
  border: none;
  border-bottom: 2px solid #cccccc;
  font-size: 28px;
  background: transparent;
  outline: none;
}

@media (max-width: 768px) {
  .modalSearchForm__input {
    font-size: 20px;
    padding: 12px 40px 12px 12px;
  }

  .modalSearchForm__placeholder {
    font-size: 20px;
    top: 12px;
    left: 12px;
  }
}

.modalSearchForm__placeholder {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  pointer-events: none;
  letter-spacing: 0.02em;
  opacity: 0.5;
  font-size: 28px;
  align-items: center;
}

.modalSearchForm__placeholder--isHidden {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

.modalSearchFormBtn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.modalSearchFormBtn__icon {
  font-size: 24px;
}

/* MOBILE MODAL MENU */
.modalMobileMenu {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  visibility: hidden;
  overflow-y: auto;
  height: 100vh;
  box-sizing: border-box;
  opacity: 0;
  background-color: #ffffff;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 120px 0;
}

.modalMobileMenu--isVisible {
  visibility: visible;
  opacity: 1;
}

.mobileMenu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 60px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  list-style: none;
}

@media (min-width: 1151px) {
  .mobileMenu {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
  }
}

.mobileMenu__item {
  margin-bottom: 0;
}

.mobileMenu__link {
  display: inline-block;
  text-decoration: none;
  text-transform: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
  transition: opacity 0.2s ease;
}

.mobileMenu__link:hover {
  opacity: 0.7;
}

/* COOKIES BANNER (CE BANNER) */
.ce-banner-main {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}

.ce-banner {
  background-color: #1f1f23;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ce-banner a {
  color: #5a8dbc;
  text-decoration: underline;
}

.ce-accept,
.ce-dismiss,
.ce-disable {
  background-color: #ff5317;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.ce-accept:hover {
  background-color: #e0440f;
}

.cookie-box .ce-accept {
  background-color: transparent;
  color: #fff;
  padding: 16px 23px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  text-align: center;
}

.cookie-box .ce-accept:hover {
  background-color: #404040;
  color: #ffffff;
}

/* PWA APP INSTALLATION BANNER */
.banner-install {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999999;
  background: #ffffff;
  border-top: 1px solid #ebebeb;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  padding: 12px 24px;
  padding-right: 60px;
  align-items: center;
  gap: 16px;
}

.banner-install:not([style*="display: none"]) {
  display: flex !important;
}

@media (min-width: 1151px) {

  .banner-install,
  .banner-install:not([style*="display: none"]) {
    display: none !important;
  }
}

.banner-install-bottom-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banner-install-bottom-header {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.banner-install-bottom-text {
  color: #949494;
  font-size: 13px;
  line-height: 1.2;
}

.banner-install-bottom-button {
  flex-shrink: 0;
}

.banner-install-bottom-button button {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.banner-install-bottom-button button:hover {
  opacity: 0.8;
}

.banner-install-bottom-close {
  position: absolute;
  font-size: 28px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #949494;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
  user-select: none;
}

.banner-install-bottom-close:hover {
  color: #1a1a1a;
}


/* DARK THEME SUPPORT FOR SYSTEM OVERLAYS */
body.dark-theme .modalSearch,
body.dark-theme .modalMobileMenu {
  background-color: #1f1f23;
}

body.dark-theme .modalSearchForm__input {
  color: #ffffff;
  border-bottom-color: #444;
}

body.dark-theme .modalSearchForm__placeholder {
  color: #888;
}

body.dark-theme .mobileMenu__link {
  color: #ffffff;
}

body.dark-theme .modalMobileMenuClose::before,
body.dark-theme .modalMobileMenuClose::after,
body.dark-theme .modalSearchClose::before,
body.dark-theme .modalSearchClose::after {
  background-color: #ffffff;
}

body.dark-theme .banner-install {
  background: #151518;
  border-top: 1px solid #28282d;
}

body.dark-theme .banner-install-bottom-header {
  color: #ffffff;
}

body.dark-theme .banner-install-bottom-button button {
  background: #ffffff;
  color: #151518;
}

body.dark-theme .banner-install-bottom-close:hover {
  color: #ffffff;
}

/* ABOUT US PAGE STYLES */
.about-team {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}

.about-team-item {
  display: flex;
  flex-direction: column;
}

.about-team-role {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #949494;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
  line-height: 1.4;
}

.about-team-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 10px;
  line-height: 1.4;
}

.about-team-text {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}

.about-team-link {
  color: #5a8dbc;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.about-team-link:hover {
  text-decoration: underline;
}

.about-links {
  display: flex;
  gap: 16px;
  width: 100%;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 30px;
  background: #f5f5f5;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease;
}

.about-btn:hover {
  background: #e8e8e8;
}

/* Dark theme support */
body.dark-theme .about-team-name {
  color: #ffffff;
}

body.dark-theme .about-team-text {
  color: #e0e0e0;
}

body.dark-theme .about-btn {
  background: #28282d;
  color: #ffffff;
}

body.dark-theme .about-btn:hover {
  background: #38383d;
}

.about-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.about-contacts-item {
  display: flex;
  flex-direction: column;
}

.about-contacts-role {
  font-size: 14px;
  color: #949494;
  margin-bottom: 4px;
  font-style: italic;
}

.about-team-item .about-links {
  margin-top: 10px;
}

.post-sub-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Dark theme support additions */
body.dark-theme .post-sub-title {
  color: #ffffff;
}

/* Language modal coming soon styling */
.language-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 20px 0;
}

.language-coming-soon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbf0f0 0%, #f6e3e3 100%);
  color: #e53935;
  margin-bottom: 20px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.language-coming-soon:hover .language-coming-soon-icon {
  transform: scale(1.1) rotate(10deg);
}

.language-coming-soon-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.coming-soon-text {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.coming-soon-subtext {
  font-size: 14px;
  font-weight: 400;
  color: #767676;
  margin: 0;
  line-height: 1.5;
  max-width: 320px;
}

/* Dark theme support for language coming soon */
body.dark-theme .language-coming-soon-icon {
  background: linear-gradient(135deg, #3d2424 0%, #2e1c1c 100%);
  color: #ff5252;
}

body.dark-theme .coming-soon-text {
  color: #ffffff;
}

body.dark-theme .coming-soon-subtext {
  color: #b0b0b0;
}


.gsc-webResult-divider {
  height: 1px !important;
}