/* =========================================
   EUCLID CIRCULAR A
========================================= */

@font-face {
  font-family: "Euclid Circular A";
  src: url("./fonts/EuclidCircularA-Semibold-WebM.woff2") format("woff2"),
    url("./fonts/EuclidCircularA-Semibold-WebM.woff") format("woff"),
    url("./fonts/EuclidCircularA-Semibold-WebM.ttf") format("truetype");

  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Euclid Circular A";
  src: url("./fonts/EuclidCircularA-Semibold-WebS.woff2") format("woff2"),
    url("./fonts/EuclidCircularA-Semibold-WebS.woff") format("woff"),
    url("./fonts/EuclidCircularA-Semibold-WebS.ttf") format("truetype");

  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Euclid Circular A";
  src: url("./fonts/EuclidCircularA-Semibold-WebXL.woff2") format("woff2"),
    url("./fonts/EuclidCircularA-Semibold-WebXL.woff") format("woff"),
    url("./fonts/EuclidCircularA-Semibold-WebXL.ttf") format("truetype");

  font-weight: 700;
  font-style: normal;
}
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: #282828;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Euclid Circular A", sans-serif;
}
body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #282828;
}
p {
  font-size: 17px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 19px 0;
  border-bottom: 1px solid #ebebeb;
  background: #fff;
}

.main-container {
  max-width: 1496px;
  margin: 0 auto;
  padding: 0 25px;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
/* LEFT */
.logo {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  letter-spacing: -2px;
  cursor: pointer;
  user-select: none;
}

/* CENTER NAV */
.nav ul {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #282828;
  padding: 12px 18px;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: #f5f5f5;
}

.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, transform 0.22s ease, visibility 0.22s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  z-index: 20;
}

.dropdown.active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important ;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center !important;

  min-height: 40px !important;

  padding: 0 10px !important;
  color: #282828;
  border-radius: 14px !important;

  text-decoration: none !important;

  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1 !important;

  transition: background 0.2s ease, color 0.2s ease !important;
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.04);
}
/* active state */
.nav-link.active {
  background: #f5f5f5;
  color: #111;
}

/* active dropdown button */
.dropdown.active .dropdown-toggle {
  background: #f5f5f5;
  color: #111;
}

/* 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: #111;
  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;
  font-family: "Euclid Circular A", sans-serif;
  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: 14px;

  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 h2 {
  font-size: 28px;
  line-height: 1;

  font-weight: 600;
  font-family: "Euclid Circular A", sans-serif;

  color: #282828;
}

/* CLOSE */
.language-close {
  width: 34px;
  height: 34px;

  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: opacity 0.2s ease;
}

.language-close:hover {
  opacity: 0.65;
}

/* 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: #282828;
  font-family: "Euclid Circular A", sans-serif;
  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: 2fr 306px;
  margin: 0 auto;
  width: 100%;
  max-width: 1555px;
  min-height: 100vh;
}

/* LEFT */
.content {
  padding: 82px 0;
  padding-bottom: 200px;
}
.conten-cont {
  border-bottom: 1px solid #ebebeb;
}
/* MAIN WRAPPER */
.article-layout {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 0 21px;
  max-width: 862px;
  gap: 40px;
  margin: 0 auto;
}

/* LEFT FLOAT ACTIONS */
.article-actions {
  padding-top: 8px;

  position: sticky;
  top: 120px;

  height: fit-content;
      z-index: 2;
}

.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: 20px;

  font-size: 11px;
  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 {
  position: relative;

  z-index: 5;

  margin-bottom: 12px;

  transition: filter 0.35s ease, transform 0.35s ease;
}

/* WHITE ICON */
.action-btn-like.active > img {
  filter: brightness(0) invert(1);
}

/* ========================================= */
/* COUNT */
/* ========================================= */

.likes-count {
  position: absolute;

  top: 30px;
  left: 20px;

  font-size: 11px;
  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 {
  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 {
  width: 17px;
  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(0, 0, 0, 0.28);

  opacity: 0;
  visibility: hidden;

  transition: 0.28s ease;

  z-index: 9998;
}

/* 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: 16px;

  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: 9999;

  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);

  font-family: sans-serif;
}

/* ========================================= */
/* 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%;

  background: #000;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.popup-share-circle img {
  display: block;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.popup-share-row span {
  font-size: 15px;
  font-weight: 500;

  color: #2d2d2d;
}
/* TITLE */
.send-modal-top h3 {
  font-size: 28px;
  font-weight: 600;

  line-height: 1;

  color: #282828;

  margin: 0;
}

/* ====================================== */
/* 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 {
  padding: 8px;
  border-radius: 50%;

  background: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  flex-shrink: 0;
}
.send-modal-icon:hover {
  background-color: #d8d8d8;
}
.send-modal-icon:hover img {
  filter: brightness(0);
}
.social-block {
  display: flex;
  gap: 8px;
}
/* IMG */
.send-modal-icon img {
  width: 20px;
  height: 20px;

  object-fit: contain;

  display: block;
}

/* ====================================== */
/* TEXT */
/* ====================================== */

.send-modal-item span {
  font-size: 14px;
  font-weight: 500;

  color: #282828;

  line-height: 1.2;
}

/* ====================================== */
/* MOBILE */
/* ====================================== */

@media (max-width: 480px) {
  .send-modal {
    width: calc(100% - 32px);

    padding: 16px;
  }

  .send-modal-top h3 {
    font-size: 22px;
  }
}
/* ARTICLE */
.article {
  max-width: 683px;
}

/* BREADCRUMBS */
.breadcrumbs {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 10px;

  margin-bottom: 24px;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 13px;
  color: #949494;
  text-decoration: none;
  line-height: 1;
}

.breadcrumbs .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d0d0d0;
}

.breadcrumbs-actives {
  display: block;
  color: #c0c0c0 !important;
}

/* META */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 28px;
}

.article-info,
a {
  font-size: 13px;
  color: #949494;
  text-decoration: none;
  transition: all 0.2s ease-in;
}
.article-info,
a:hover {
  color: #4e4e4e;
}
/* COPY BUTTON */
.copy-link {
  position: relative;

  padding: 10px;

  border-radius: 14px;

  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 {
  background: #ebebeb;
}

/* ACTIVE */
.copy-link.copied {
  background: #ffffff;
}

.copy-link:hover {
  background: #ebebeb;
}

/* TOOLTIP */
.copy-tooltip {
  position: absolute;

  top: -60%;

  transform: translateY(-50%);

  background: #282828;

  color: #fff;

  font-size: 12px;
  font-weight: 400;

  white-space: nowrap;

  padding: 5px 7px;
  width: 122px;
  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;
}

/* SHOW ON HOVER */
.copy-link:hover .copy-tooltip {
  opacity: 1;
  visibility: visible;
}

/* SOURCE */
.article-source {
  font-size: 12px;
  color: #c0c0c0;
  display: block;
  margin-bottom: 20px;
}

/* TEXT */
.article-text {
  font-size: 17px;

  line-height: 1.72;

  color: #1a1a1a;

  font-weight: 400;
  margin-bottom: 40px;
}
.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: 14px;
  margin-bottom: 16px;
}
.main-bg img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}
/* IMAGE WRAP */
.article-image-wrap {
  position: relative;
}

/* COOKIE */
.cookie-box {
  position: fixed;

  left: 50%;
  bottom: 9px;

  transform: translateX(-50%);

  z-index: 9999;
  width: 353px;

  z-index: 10;

  background: #1f1f23;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

      padding: 10px 12px;

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);

  transition: opacity 0.25s ease, transform 0.25s ease;
  /* display: none; */
}
.cookie-left {
  padding: 14px 10px;
}

/* HIDE */
.cookie-box.hide {
  opacity: 0;
  visibility: hidden;

  transform: translateX(-50%) translateY(20px);
}

/* LEFT */
.cookie-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-left img {
  width: 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);
}

/* 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: #282828;
}

/* IMAGE WRAP */
.article-image-wrap {
  position: relative;
}

.content-inner {
  max-width: 760px;
}

.content h1 {
  font-size: 48px;
  letter-spacing: -2.6px;
  margin-bottom: 28px;
  font-weight: 600;
  line-height: 56px;
  color: #2b2b2b;
}

.content p {
  line-height: 1.7;
  color: #2b2b2b;
  /* margin-bottom: 24px; */
}
.article-title-large {
  color: #282828;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 44px;
}
.article-title-small {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 32px;
  display: block;
}

/* RIGHT SIDEBAR */
.sidebar {
  border-left: 1px solid #ebebeb;
  background-color: #fff;
  position: relative;
}

/* STICKY */
.sidebar-inner {
  position: sticky;

  top: 76px;

  padding-top: 82px;
}

.sidebar h3 {
  font-size: 18px;
  font-weight: 600;
  padding: 0 25px;
  margin-bottom: 20px;
  color: #282828;
}

.popular-item {
  padding: 16px 25px;
  transition: all 0.3s;
}
.popular-block {
  display: flex;
  align-items: center;
  gap: 5;
}
.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 {
  border-radius: 50%;
  object-fit: cover;
}
.item-link-lg {
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease-in;
}
.item-link-lg:hover {
  color: #676767;
}
.popular-item:hover {
  background: #f5f5f5;
}
.recipes-block {
  margin-bottom: 28px;
}
.recipes-block p {
  margin-bottom: 8px !important;
}
.recipes-block p:last-child {
  margin-bottom: 0;
}
.lits-recipes {
  margin-left: 3.5%;
  margin-bottom: 40px;
}
.lits-recipes li {
  list-style: decimal;
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 12px;
}
.lits-recipes 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: 120px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.8s ease;
}

.card:hover .card__image {
  transform: scale(1.06);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__category {
  font-size: 13px;
  color: #949494;
  font-weight: 400;
  margin-bottom: 12px;
}

.card__title {
  font-size: 20px;
  font-weight: 600;
  color: #282828 !important;
  line-height: 1.4 !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: #282828;
  padding: 6.5px 12px;
  font-size: 13px;
  display: flex;
  background-color: #f5f5f5;
  border-radius: 25px;
}
.choosing-block a:hover {
  opacity: 0.4;
}
.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: 600;
}
.forwards-block img {
  padding: 10px 14px 10px 16px;
  border-radius: 12px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
.forwards-block img: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;
  font-family: "Roboto Flex", sans-serif;
}
.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: 40px 0;
  border-top: 1px solid #ebebeb;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.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: #282828;
  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;
  padding: 0 21px;
  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: 8px;
}

.main-bg-category img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  border-radius: 8px;

  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;
}
.date-category {
  font-size: 13px;
  color: #949494;
}
.card-category {
  align-items: flex-start;
  margin-bottom: 0px;
  border-bottom: none;

}
.card__category-data {
  font-size: 13px;
  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: 13px;
  font-weight: 500;
  line-height: 1;

  color: #282828;

  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

/* HOVER */
.pagination-link:hover {
  background: #f5f5f5;
}

/* 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;
}
.action-btn2 {
  margin-bottom: 0 !important;
  width: 48px;
    height: 45px;
    /* padding: 11px; */
    border-radius: 12px;
}.article-divider {
  border: none;
    border-top: 1px solid #ebebeb;
    margin: 0;
    left: 0;
    width: 100%;
    max-width: 1848px;
    position: absolute;
}

/* ========================================= */
/* SIDEBAR */
/* ========================================= */

.tips-sidebar {
  width: 100%;
  max-width: 250px;

  padding: 11px 14px 30px;

}

/* TITLE */
.tips-sidebar-title {
  font-size: 18px;
  font-weight: 600;

  color: #282828;
  
  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: #282828;
}

/* ========================================= */
/* SIMPLE LINK */
/* ========================================= */

.tips-link {
  display: block;

  text-decoration: none;
  font-family: "Euclid Circular A", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;

  color: #282828;
  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: #282828;
  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: #282828;
}
.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: #282828;
}
.title-grid {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
}
.date {
  font-size: 10.5px;
  color: #aaa;
}

/* ===== 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;
}

/* ===== MOBILE ≤ 420px ===== */
@media (max-width: 420px) {
}
/* ========================================= */
/* DARK THEME */
/* ========================================= */
.block-article {
}
body.dark-theme .send-modal-icon {
  background-color: #282828;
}
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{
  
      border-top: 1px solid #262626 ;
}
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: #282828;
}
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: #8a8a8a;
}
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: #282828;

  margin-bottom: 18px;
}

/* TITLE */
.error-page-content h3 {
  margin: 0 0 16px;

  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;

  color: #282828;
}

/* 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: #111111;
}

/* HOVER */
.dark-theme .error-btn:hover {
  background: #e9e9e9;
}
/* RESPONSIVE */
@media (max-width: 2169px) {
 .article-divider {
    max-width: 1650px;
 }
}
@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) {
  .page {
    grid-template-columns: 1fr;
  }
  .article-layout-category {
    justify-content: center;
    gap: 0px !important;
  }
  .nav-link-mob {
    display: none;
  }
  .sidebar {
    display: none;
  }

  .content h1 {
    font-size: 42px;
  }
}
@media (max-width: 1024px) {
  .nav-link {
    padding: 10px 8px;
  }
  .footer-wrap p {
    max-width: 550px;
  }
}
@media (max-width: 1000px) { 
.tips-sidebar {
  display: none;

}
  .grid-block {
    grid-template-columns: 1fr 1fr 1fr ;
  }
}
@media (max-width: 900px) {



  /* .hero-main {
    grid-column: 1;
    grid-row: 1;
  } */

  /* .hero-side-1 {
    grid-column: 2;
    grid-row: 1;
  }  */


  /* Side 2 becomes full-width row 2 - horizontal layout */
  /* .hero-side-2 {
    grid-column: 1 / span 2;
    grid-row: 2;
  } */
  /* .hero-side-2 .side-card {
    flex-direction: row;
    gap: 8px;
  }
  .hero-side-2 .side-card img {
  
    flex-shrink: 0;
  }
  .hero-side-2 .side-card .card-body {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-side-2 .side-card .title-side {
    font-size: 13px;
  } */

  /* Grid: 2 columns, overlay cards go full width */
  /* .grid {
    grid-template-columns: 1fr 1fr ;
  } */

  .card-std img {
  
  }

  /* .card-overlay.full-mob {
    grid-column: 1 / -1;
  }
  .card-overlay.full-mob img {

  }

  .section-label {
    grid-column: 1 / -1;
  } */
  .footer-wrap span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
  }
  .article-title {
    font-size: 42px;
    letter-spacing: -1.5px;
  }
  .footer-wrap p {
    font-size: 14px;
  }
  .footer-wrap p span {
    font-size: 14px;
  }
  .links-footer a {
    font-size: 14px;
  }
  .article {
  }

  .cookie-box {
    /* width: calc(100% - 40px); */
    /* bottom: 20px; */
  }
}
@media (max-width: 834px) {
  /* =========================
   STORIES SLIDER
========================= */
.article-layout-tips {
  display: unset !important;
  max-width: unset !important;
  padding: 0 !important;
}
.main-block-cont-tids {
  display: unset;
}
.page-main-tids {
  display: unset;
}
  .stories-slider {
    display: block;
    width: 100%;

    padding: 20px 0;

    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;

    overflow: hidden;

    background: #fff;
  }
  .story-content-tips {
    font-weight: 700;
    font-size: 14px;
    max-width: 250px;
    color: #282828;
            line-height: 1.4;
  }
  .tips-stories-title {
        font-size: 18px;
    font-weight: 600;
    color: #282828;
    padding: 0 25px;
    margin-bottom: 12px
  }
  .stories-slider-tips {
    margin-bottom: 52px;
    margin-top: 11px;
    padding: 12px 0;
  }
  

  .article-layout {
    max-width: 675px;
    margin: 0 auto;
  }
  .stories-slider-tips {
        font-size: 18px;
    font-weight: 600;
    color: #282828;
    /* padding: 0 25px; */
  }
  .lits-recipes {
    margin-left: 4.5%;
}
  .content {
    padding: 43px 24px 150px;
  }
  .article-layout {
    /* gap: 63px; */
  }
  .article {
    max-width: 560px;
  }
  .card {
    margin-bottom: 28px;
  }
  .end-block {
    margin-bottom: 50px;
  }
  .article-layout-second {
    padding-top: 50px;
  }
  .content h1 {
    font-size: 40px;
    letter-spacing: -0.6px;
    margin-bottom: 20px;
    line-height: 110%;
  }
  .article-meta {
    margin-bottom: 20px;
  }
  .article-text {
    margin-bottom: 20px;
  }
  /* TRACK */

  .stories-track {
    display: flex;
    align-items: stretch;

    gap: 20px;

    overflow-x: auto;

    padding: 0 25px;

    scroll-behavior: smooth;

    cursor: grab;

    user-select: none;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }
  .content p {
    font-size: 16px;
  }
  .article-title-large {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 120%;
  }
  .article-text-lg {
    margin-bottom: 20px !important;
  }
  .stories-track::-webkit-scrollbar {
    display: none;
  }

  .stories-track:active {
    cursor: grabbing;
  }
  .recipes-block {
    margin-bottom: 20px;
  }
  .lits-recipes {
    margin-bottom: 28px;
  }
  /* CARD */

  .story-card {
    max-width: 321px;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    text-decoration: none;

    flex-shrink: 0;
  }

  /* IMAGE */

  .story-card img {
    width: 60px;
    height: 60px;

    border-radius: 8px;

    object-fit: cover;
  }

  /* CONTENT */

  .story-content {
    display: flex;
    flex-direction: column;

    padding-top: 2px;
  }

  .story-content span {
    font-size: 12px;
    line-height: 1;

    color: #949494;

    margin-bottom: 4px;
  }

  .story-content p {
    font-size: 13px;
    line-height: 1.4;

    color: #282828;
  }

  /* HOVER */

  .story-card:hover p {
    opacity: 0.7;
  }

  /* RESPONSIVE */
}
@media (max-width: 798px) {
  #openLanguageModal {
    display: none;
  }
  .theme {
    display: none;
  }
}
.nav-mob {
  display: none;
}
@media (max-width: 768px) {
  .burger-content {
    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-start;

    gap: 40px;

    padding: 60px 32px 100px;

    overflow-y: auto;
  }
  .error-code {
    font-size: 72px !important;
  }
  .error-page-content h3 {
    font-size: 34px !important;
  }
}
@media (max-width: 738px) {
  .nav-mob {
    display: flex;
  }

  .nav {
    display: none;
  }
  .nav-link-mob2 {
    display: none;
  }
  .nav-mob {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    cursor: grab;

    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;

    scrollbar-width: none;
  }

  .nav-mob::-webkit-scrollbar {
    display: none;
  }

  /* LIST */
  .nav-mob ul {
    display: flex;
    align-items: center;
    gap: 38px;

    width: max-content;
    height: 45px;
    padding: 0px 16px;

    list-style: none;
  }

  /* LINKS */
  .nav-mob .nav-link {
    white-space: nowrap;

    font-size: 14px;
    font-weight: 400;
    line-height: 1;

    color: #2d2d2d;

    text-decoration: none;
  }

  /* ACTIVE */
  .nav-mob .nav-link.active {
    color: #000;
  }

  /* DRAG STATE */
  .nav-mob.dragging {
    cursor: grabbing;
  }

  .nav-mob.dragging a {
    pointer-events: none;
  }
}
  .full-mob {
    display: none;
  }
@media (max-width: 700px) {
  .language-modal {
    width: calc(100% - 32px);

    padding: 28px 24px 32px;
  }
  .hero-side-desk {
    display: none;
  }
  .full-disk {
    display: none;
  }
 .full-mob {
  display: flex;
  justify-content: center;
  max-width: 100%;


 }
 .hero-main {
  max-width: 100%;
 }
 .side-card-mob-2 {
  height: 303px;
 }
  .language-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
  }
  .grid-block {
            grid-template-columns: 1fr 1fr;
  }
  .links-footer a {
    font-size: 15px;
  }
  .hero-side-mob-1 {
    display: flex;
    max-width: 100%;
  }
  .footer-wrap span {
    font-size: 15px;
  }

  .language-top h2 {
    font-size: 24px;
  }

  .language-grid a {
    font-size: 16px;
  }
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap p {
    font-size: 15px;
  }
  .footer-wrap span {
    margin: 0;
  }
}
/* ВАЖЛИВО */

/* якщо є swiper / slider */
.stories-track,
.slider,
.cards-row {
}
@media (max-width: 650px) {
  .nav-mob ul {
    gap: 0;
  }
  .lits-recipes {
    margin-left: 4.7%;
}
  .story-card {
    max-width: 218px;
  }
  .title-hero {
    font-size: 20px !important;
  }
  .stories-slider {
            border-top: none;
        border-bottom: none;
  }
  .stories-slider-tips {
            border-top: 1px solid #ececec !important;
        border-bottom: 1px solid #ececec !important;
  }
  .title-side {
    font-size: 13px;
  }
  .content {
    padding-right: 0;
    padding-left: 0;
  }
  .content-main-tips {
    padding: 0 24px;
  }
  .article-actions {
    display: none;
  }
  .article-layout {
    display: flex;
    justify-content: center;
  }
  .copy-tooltip {
    top: 52%;
    left: -149px;
  }
  .cookie-box {
    display: none;
  }
  .footer {
    padding: 28px 0;
  }
  .header {
    padding: 7px 0;
  }
  .burger-column a {
    font-size: 20px;
  }
  .burger-content {
    gap: 12px !important;
  }
  .burger-content {
    padding: 28px 20px;
  }
  .language-modal {
    overflow-y: scroll;
    height: 400px;
  }
}
@media (max-width: 520px) { 
   .lits-recipes {
    margin-left: 5.5%;
}
  .error-code {
    font-size: 50px !important;
            margin-bottom: 5px;
  }
  .error-page-content h3 {
    font-size: 28px !important;
  }
  .error-page-content span {
    font-size: 14px;
        margin: 0 0 42px;
  }
  .error-btn {
        font-size: 14px;
  }
}
@media (max-width: 425px) {
  .breadcrumbs a,
  .breadcrumbs span {
    font-size: 12px;
  }
  .breadcrumbs span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 172px;
  }
  .content h1 {
    font-size: 28px;
  }
  .article-info {
    font-size: 12px;
    line-height: 20px;
  }
  .image-sticky-wrap {
    margin-bottom: 4px;
  }
  .main-bg {
    margin-bottom: 4px;
  }
  .article-source {
    margin-bottom: 12px;
  }
  .content p {
    font-size: 15px;
  }
  .article-title-large {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .article-title-small {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .article-text-lg {
    margin-bottom: 12px;
  }
  .lits-recipes {
    margin-left: 6%;
  }
  .lits-recipes li {
    font-size: 15px;
  }
  .lits-recipes {
    margin-bottom: 20px;
  }
  .card__image-wrap {
    width: 100px;
    height: 100px;
  }
  .card {
    margin-bottom: 20px;
  }
  .choosing-block span {
    font-size: 12px;
  }
  .left-end-block {
    display: block;
  }
  .end-block {
    align-items: end;
  }
  .story-content p {
    font-size: 12px;
  }
  .story-card {
    max-width: 234px;
  }
  .stories-track {
    gap: 14px;
  }
  .stories-slider {
    border: none;
  }
  .content {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}
@media (max-width: 355px) {
  .breadcrumbs span {
    max-width: 120px;
  }
}
/* =========================
   THEME BUTTON
========================= */

.theme {
  cursor: pointer;
}

/* =========================
   DARK THEME
========================= */

body.dark-theme {
  background: #000;
  color: #fff;

  transition: background 0.35s ease, color 0.35s ease;
}

/* 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: #282828;
  color: #fff;
}
body.dark-theme .nav-link:hover {
  background: #282828;
}
/* ICONS */

body.dark-theme .icon-btn img,
body.dark-theme .action-btn img,
body.dark-theme .copy-link img,
body.dark-theme .like-block img,
body.dark-theme .forwards-block img {
  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 {
  filter: brightness(0);
}
body.dark-theme .logo img {
  filter: brightness(0) invert(1);
}
body.dark-theme .language-close img {
  filter: brightness(0) invert(1);
}
body.dark-theme .copy-link:hover {
  background: #f5f5f5;
}
body.dark-theme .popular-item:hover {
  background-color: #282828;
}
body.dark-theme .language-grid a {
  color: #fff;
}
body.dark-theme .language-top h2 {
  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 {
  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 {
  filter: brightness(0) invert(1);
}
/* SIDEBAR */

.dark-theme .icon-btn:hover {
  background: #f5f5f5;
}

/* робимо svg/img чорними */
.dark-theme .icon-btn:hover img {
  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-btn:hover {
  background: #202020;
} */

/* COPY BUTTON */

body.dark-theme .copy-link {
  border: 1px solid #262626;
}

/* DROPDOWN */

body.dark-theme .dropdown-menu {
  background: #111;
  border: 1px solid #1c1c1c;
}

body.dark-theme .dropdown-menu a {
  color: #fff;
}

body.dark-theme .dropdown-menu a:hover {
  background: #282828;
}

/* POPUPS */

body.dark-theme .language-modal,
body.dark-theme .forward-popup,
body.dark-theme .copy-tooltip {
  background: #282828;
  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 {
  color: #fff;
}
body.dark-theme .send-modal-icon:hover {
  background-color: #f5f5f5;
}
/* 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 {
  filter: brightness(0) !important;
}
/* ICON ACTIVE */
.dark-theme .action-btn-like.active > img {
  filter: brightness(0);
}

/* COUNT ACTIVE */
.dark-theme .action-btn-like.active .likes-count {
  color: #111;
}

/* ========================================= */
/* 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;
}
