@charset "UTF-8";
:root {
  --dark-color: #141414;
  --grey-color: #A9B2BE;
  --dark-grey-color: #404C5C;
  --white-color: #EEF3F8;
  --green-color: #58B000;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--dark-color);
}

ul, ol {
  padding: 0;
}

ul li, ol li {
  list-style: none;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

html,
body {
  background-color: var(--white-color);
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  font-family: "TT Travels";
  color: #000000;
  height: 100%;
}

body._lock {
  overflow: hidden;
}

body.lock {
  overflow: hidden;
}
body.lock .header {
  padding-right: 15px;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/*-------------------------------------*/
[class*=__container] {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
}

/*--------------------------------------*/
.page {
  flex: 1 1 auto;
  padding-top: 80px;
}

/*------------- Hero section -----------------------*/
.swiper {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 20px;
}

.swiper-slide {
  font-size: 18px;
  color: #fff;
  box-sizing: border-box;
  padding: 200px 60px 100px;
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.swiper-slide .subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.swiper-slide a .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 13px;
}
.swiper-slide a .title span {
  line-height: 120%;
  color: var(--white-color);
}
.swiper-slide a .title img {
  width: 30px;
}

.swiper-slide .text {
  font-size: 22px;
  font-weight: 400;
  max-width: 590px;
  line-height: 1.3;
}

.swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1 !important;
  height: 6px !important;
  margin-bottom: 30px;
}

.swiper-scrollbar-drag {
  height: 6px;
  background: #46A80F;
  width: 100px !important;
}

.swiper-scrollbar-horizontal {
  left: calc(50% - 150px) !important;
  z-index: 50;
  width: 300px !important;
}

/*------------- Hero section -----------------------*/
.latest_adds {
  margin-top: 80px;
}

.latest_adds__title {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
}

.entries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.entry-card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
.entry-card:hover {
  box-shadow: 0 2px 15px 1px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.coocking__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
}

.coock-props {
  display: flex;
  align-items: center;
}
.coock-props span {
  margin-left: 4px;
  font-weight: 500;
  font-size: 13px;
  color: #a9b2be;
}

.coock-props .icon {
  fill: #A9B2BE; /* серый по умолчанию */
  transition: fill 0.3s ease;
}

/* Подсветка первого огонька */
.coock-props.level-light .icon:nth-child(1),
.coock-props.level-medium .icon:nth-child(-n+2),
.coock-props.level-heavy .icon:nth-child(-n+3) {
  fill: #4CAF50; /* зелёный */
}

.entry-title {
  padding: 8px 10px;
  font-weight: 700;
  font-size: 18px;
  height: 100%;
}
.entry-title a:hover {
  color: var(--green-color);
}

.entry-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.entry-meta .meta-author a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  color: #a9b2be;
}
.entry-meta .meta-author a:hover {
  color: var(--green-color);
}
.entry-meta .meta-author a .avatar {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}
.entry-meta .meta-date {
  font-weight: 500;
  font-size: 13px;
  color: #a9b2be;
}

.read-more__wrap {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
.read-more__wrap .btn-read__more {
  font-weight: 700;
  font-size: 15px;
  border-radius: 40px;
  padding: 12px 39px;
  background: #46a80f;
  color: #fff;
  transition: 0.2s ease-in-out;
}
.read-more__wrap .btn-read__more:hover {
  background: rgb(60.2459016393, 144.5901639344, 12.9098360656);
}

/*------------- Single post style -----------------------*/
/*-------------------------------------------------------*/
.hero-section__body {
  color: #fff;
}

.hero-section > figure {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: inherit;
}

.media-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-height: 780px;
}
.media-container ._bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.media-container img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry-header {
  position: relative;
  margin-top: -240px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 5;
}

.entry_header__wrapp .breadcrumb {
  margin-bottom: 15px;
}
.entry_header__wrapp .breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.entry_header__wrapp .breadcrumb ul li a {
  color: #fff;
}
.entry_header__wrapp .breadcrumb ul li a:hover {
  color: var(--green-color);
}
.entry_header__wrapp .breadcrumb ul li span {
  color: var(--grey-color);
}
.entry_header__wrapp .page-title {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 110%;
  max-width: 850px;
}
.entry_header__wrapp .entry-meta {
  display: flex;
  justify-content: start;
  margin-top: 60px;
}
.entry_header__wrapp .meta-author {
  display: flex;
  align-items: center;
}
.entry_header__wrapp .meta-author a span {
  font-weight: 500;
  font-size: 13px;
  line-height: 90%;
  color: #fff;
}

.media-container-static img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.ct-meta-date {
  font-weight: 500;
  font-size: 13px;
  line-height: 90%;
  color: #fff;
}

.nutrition-chart {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.circle {
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(#48A9F8 0% 2.5%, #FF8B3D 2.5% 15%, #33CC99 15% 100%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.content {
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.kcal {
  font-size: 14px;
  color: var(--dark-color);
  width: 50px;
}

.legend p {
  margin: 0;
  padding: 5px 0;
}

.legend .protein {
  color: #48A9F8;
}

.legend .fats {
  color: #FF8B3D;
}

.legend .carbs {
  color: #33CC99;
}

/*----- Post content ---------------*/
.page-container {
  display: grid;
  grid-template-columns: 1fr 346px;
  gap: 20px;
  padding-top: 30px;
}

.entry-content p {
  line-height: 130%;
  font-weight: 400;
}

.wp-block-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 15px;
}

.sidebar {
  background: #DBE0E5;
  border-radius: 15px;
  padding: 0 15px 30px;
}

.widget_recent_entries .entry_card__sidebar {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: flex-start;
  background: var(--white-color);
  border-radius: 10px;
  margin-bottom: 10px;
}
.widget_recent_entries .boundless-image {
  height: 100%;
}
.widget_recent_entries .boundless-image img {
  height: 100%;
  border-radius: 10px 0 0 10px;
}
.widget_recent_entries .entry_text__block {
  padding: 10px;
}
.widget_recent_entries .entry_text__block .entry-title {
  font-size: 14px;
  padding: 0;
  margin-bottom: 10px;
  height: 40px;
}
.widget_recent_entries .entry_text__block .entry-meta {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.widget_recent_entries .entry_text__block .meta-author {
  margin-bottom: 10px;
}
.widget-title {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 20px;
}

.widget_categories .cat-item {
  margin-bottom: 10px;
}
.widget_categories .cat-item a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.widget_categories .cat-item a:hover {
  color: var(--green-color);
}

.widget_tags ul {
  display: flex;
  flex-wrap: wrap;
}
.widget_tags ul .tag-item {
  margin: 6px;
}
.widget_tags ul .tag-item a {
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  background: #fff;
  border-radius: 20px;
}
.widget_tags ul .tag-item a:hover {
  color: var(--green-color);
}

.toggle-button {
  display: none;
}

/*=========================================================================================*/
/*---------------------------- Media queries ----------------------------------------------*/
/*=========================================================================================*/
@media screen and (max-width: 959.98px) {
  .entries {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .toggle-button {
    position: fixed;
    cursor: pointer;
    right: 0;
    top: 30%;
    z-index: 6;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .toggle-button.show {
    opacity: 1;
  }
  .sidebar {
    transform: translateX(100%);
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 5;
    transition: 0.3s ease 0s;
    overflow-y: auto;
  }
  .toggle-button {
    display: block;
  }
  .sidebar.show {
    transform: translateX(0);
  }
  .no-scroll {
    overflow: hidden;
  }
  .page-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  /*--------------------------------------*/
  .entry-header {
    margin-top: -240px;
    align-items: flex-start;
    flex-direction: column;
  }
  .nutrition-chart {
    margin-top: 40px;
  }
  .entry_header__wrapp .entry-meta {
    margin-top: 15px;
  }
  .nutrition-chart {
    margin-top: 15px;
  }
  .entry-header {
    margin-top: -320px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767.98px) {
  /*------------- Hero section -----------------------*/
  .swiper-slide .title span {
    font-size: 28px;
    max-width: 550px;
  }
  .page-container {
    padding-top: 80px;
  }
}
@media screen and (max-width: 639.98px) {
  .entries {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-container {
    height: 600px;
  }
}
@media screen and (max-width: 540.98px) {
  /*------------- Hero section -----------------------*/
  .swiper-slide {
    padding: 200px 20px 60px;
  }
  .swiper-slide .subtitle {
    font-size: 16px;
  }
  .swiper-slide .title {
    flex-wrap: wrap;
  }
  .swiper-slide .title span {
    font-size: 22px;
    max-width: 550px;
  }
  .swiper-slide .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 479.98px) {
  .entry-header {
    padding: 0px 25px;
  }
  .entry_header__wrapp .breadcrumb ul li {
    font-size: 14px;
  }
  .circle {
    width: 80px;
    height: 80px;
  }
  .legend p {
    padding: 4px 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 414.98px) {
  .entries_wrapp {
    max-width: 380px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }
  .entries_wrapp .entries {
    display: flex;
    width: 2000px;
  }
  .entries_wrapp .entries .entry-card {
    width: 260px;
  }
}/*# sourceMappingURL=main-style.css.map */