:root {
    --mobile-padding: 15px;
    --section-margin-mobile: 1.5rem;
}
@supports (padding: max(0px)) {
    body, .navbar, .hero-section {
        padding-left: max(env(safe-area-inset-left), var(--mobile-padding));
        padding-right: max(env(safe-area-inset-right), var(--mobile-padding));
    }
    
    .footer {
        padding-bottom: max(env(safe-area-inset-bottom), 20px);
    }
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f9f0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Затемнение фона для лучшей читаемости текста */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Полупрозрачный черный оверлей */
    z-index: 1;
}

/* Текст поверх оверлея */
.hero-section .section-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem !important;
    margin-bottom: 15px;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}


/* Ð¡ÑÐ¸Ð»Ð¸ ÑÑÑÐµÑÐ° */
.site-footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}
/* Ñòèëè äëÿ ðàçäåëà "Àäñêàÿ êóõíÿ" */
.hell-kitchen {
  background: #1a1a1a;
  color: white;
  border: 2px solid #ff5722;
}

.neon-text {
  color: #ff5722;
  text-shadow: 0 0 5px #ff5722, 0 0 15px #ff5722;
  animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
  from { opacity: 0.8; }
  to { opacity: 1; }
}

.spice-controls {
  text-align: center;
  margin: 2rem 0;
}

#spiciness-slider {
  width: 80%;
  height: 10px;
  -webkit-appearance: none;
  background: linear-gradient(to right, #4CAF50, #FF9800, #FF5722);
  border-radius: 5px;
  margin: 1rem 0;
}

#spiciness-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

.flames-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  height: 50px;
  margin-top: 1rem;
}

.flame {
  width: 20px;
  height: 30px;
  background: linear-gradient(to top, #FF5722, #FFEB3B);
  border-radius: 50% 50% 20% 20%;
  filter: blur(2px);
  opacity: 0.7;
  transform-origin: bottom center;
}

.recipe-card {
  transition: all 0.5s ease;
}
.flame {
  background: linear-gradient(to top, #ff5722, #ffeb3b);
  width: 20px;
  height: 30px;
  border-radius: 50% 50% 20% 20%;
  filter: blur(2px);
  display: inline-block;
}
@media (max-width: 768px) {
    .hero-section {
        height: 200px; /* Меньшая высота на мобильных */
    }
}
/* Секция "Хреновая правда" */
.section.truth-section {
    padding: 0 !important;
    background: #fff !important;
}

.section.truth-section .section-content {
    max-width: 100%;
    padding: 0;
}

.section.truth-section .section-title {
    display: none; /* Скрываем заголовок, если нужно */
}
.section-title {
    text-align: center;
}
/* Основной контейнер слайдера */
.truth-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 440px;
    overflow: hidden;
    background: #f5f5f5;
}

/* Контейнер слайдов */
.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Карточка слайда */
.truth-card {
    min-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Вертикальное центрирование */
    align-items: center; /* Горизонтальное центрирование */
    text-align: center;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

/* Текстовый контейнер (новый элемент) */
.truth-card-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(255, 255, 255, 0.85); /* Полупрозрачный белый фон */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Заголовок */
.truth-card h3 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.3;
        z-index: 10;
}

/* Текст */
.truth-card p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0 auto;
    max-width: 700px;
        z-index: 10;
}

/* Фоновое изображение */
.truth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Полупрозрачный черный оверлей */
    z-index: 0;
}
/* Индивидуальные фоны для каждого слайда */
.truth-card:nth-child(1) { background: #3A5F0B url('../images/hren-bg1.jpg') center/cover; }
.truth-card:nth-child(2) { background: #6B2737 url('../images/hren-bg2.jpg') center/cover; }
.truth-card:nth-child(3) { background: #1E3F20 url('../images/hren-bg3.jpg') center/cover; }
.truth-card:nth-child(4) { background: #5C2E0E url('../images/hren-bg4.jpg') center/cover; }
.truth-card:nth-child(5) { background: #004225 url('../images/hren-bg5.jpg') center/cover; }
/* Навигационные точки */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(59, 146, 63, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.9);
}

.slider-dot.active {
    background: green;
    transform: scale(1.4);
    box-shadow: 0 0 5px rgba(46, 126, 50,0.2);
}



/* Сетка инфографики */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.chart-container {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: 80%; /* Уменьшаем ширину */
    margin: 0 auto; /* Центрируем */
}

/* Заголовки графиков */
.chart-container h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: black!important;
    font-weight: 600!important;
}

/* Донат-чарт (витамины) */
#vitaminChart {
    max-height: 220px;
}

/* Шкала остроты */
.heat-bar {
    height: 30px; /* Уменьшаем высоту */
    padding-left: 12px;
}

/* Линейный график (история) */
#historyChart {
    max-height: 160px;
}

/* Горизонтальные бары (география) */
#geoChart {
    max-height: 200px;
}

/* Подписи */
.chart-caption {
    font-size: 0.75rem;
    margin-top: 8px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .infographic-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .chart-container {
        width: 100%;
        padding: 12px;
    }
}

/* Стили для текстового блока */
.about-hren {
    background-color: #f5f9f0;
    padding: 60px 0;
}

.about-hren-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hren-text {
    flex: 1;
}

.about-hren-image {
    flex: 1;
    position: relative;
}

.hren-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hren-photo:hover {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #7A7C78;
    margin-top: 10px;
    font-style: italic;
}

.about-hren-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}



@media (max-width: 480px) {
    .timeline-item {
        width: 100%;
    }
}
@media (hover: none) {
    a, button, .nav-links a, .slider-dot {
        min-width: 5px;
        min-height: 5px;
    }
    
    /* Улучшаем видимость активных элементов */
    a:active, button:active {
        opacity: 0.8;
        transform: scale(0.98);
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 20px 30px;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .truth-slider {
        height: 400px;
    }
}
html {
    -webkit-overflow-scrolling: touch;
}
@media (max-height: 800px) and (max-width: 430px) {
    .hero-section {
        height: 180px !important;
    }
    
    .hero-section h1 {
        font-size: 1.8rem !important;
        margin-top: env(safe-area-inset-top);
    }
    
    .hero-section p {
        font-size: 1rem !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero-section::before {
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }
    
    .truth-card::before {
        -webkit-transform: translateZ(0);
    }
}
/* Цвета точек */
.prehistoric { background: #1E3F20; }
.early-cultivation { background: #2E4A11; }
.antiquity { background: #5C2E0E; }
.byzantine { background: #6B2737; }
.medieval { background: #3A5F0B; }
.exploration { background: #004225; }
.industrial { background: #2C5E1A; }
.modern { background: #5C2E0E; }
.future { background: #6B2737; }

/* Навигация */
.timeline-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 800px;
  padding: 0 1rem;
}

.nav-button {
  background: #3A5F0B;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button:hover {
  background: #6B2737;
  transform: scale(1.1);
}

.timeline-progress {
  flex-grow: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 11.11%; /* 1/9 */
  background: linear-gradient(to right, #1E3F20, #3A5F0B);
  transition: width 0.5s ease;
}

/* Адаптивность */
@media (max-width: 992px) {
  .timeline-item {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .timeline-title {
    font-size: 1.8rem;
  }
  
  .timeline-item {
    width: 260px;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .nav-button {
    width: 40px;
    height: 40px;
  }
}
/*---TIMELINE----*/
/* ????? ??? ????????? ????? ?? ??? ??????, ?? ?? ?????? ?????? */
.season-timeline {
    position: relative;
    width: 100%;
    margin: 40px 0 0;
    padding: 40px 5%;
    background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e9 100%);
    box-sizing: border-box;
    overflow: hidden;
}

.timeline-line {
    position: absolute;
    top: 110px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, #5a8f3d, #7A7C78);
    z-index: 1;
    border-radius: 2px;
}

.timeline-items-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    text-align: center;
    position: relative;
    top: -15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding: 0 8px;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #5a8f3d;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(90, 143, 61, 0.25);
    background: #5a8f3d;
    color: white;
}

.timeline-month {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.3;
}

.timeline-action {
    display: block;
    font-size: 0.85rem;
    color: #5a6b7b;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 18px;
    margin-top: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
    line-height: 1.3;
}

/* ???????? ????? */
.hren-growth-animation {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #8bc34a, #cddc39);
    width: 0;
    transition: width 1.8s ease-in-out;
    border-radius: 2px;
    z-index: 3;
}

/* ???????????? - ?????????? */
@media (max-width: 1200px) {
    .timeline-items-container {
        max-width: 1000px;
        padding: 0 10px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-month {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .season-timeline {
        padding: 35px 4%;
    }
    
    .timeline-line {
        left: 4%;
        right: 4%;
        top: 100px;
    }
    
    .timeline-items-container {
        padding: 0 8px;
    }
    
    .timeline-item {
        width: 17%;
        padding: 0 5px;
    }
}

@media (max-width: 900px) {
    .timeline-items-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .timeline-item {
        width: 30%;
        min-width: 140px;
        top: -10px;
    }
    
    .timeline-line {
        top: 90px;
    }
}

@media (max-width: 768px) {
    .season-timeline {
        padding: 30px 3%;
        margin: 30px 0 0;
    }
    
    .timeline-line {
        left: 3%;
        right: 3%;
        top: 85px;
    }
    
    .timeline-items-container {
        margin-top: 40px;
        gap: 20px;
    }
    
    .timeline-item {
        width: 45%;
        min-width: 130px;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .timeline-month {
        font-size: 0.95rem;
    }
    
    .timeline-action {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .season-timeline {
        padding: 25px 2%;
    }
    
    .timeline-line {
        left: 2%;
        right: 2%;
        top: 75px;
    }
    
    .timeline-items-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 35px;
    }
    
    .timeline-item {
        width: 100%;
        max-width: 220px;
        top: 0;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-month {
        font-size: 0.9rem;
    }
}

/* ??????? ??? ????????? */
.timeline-item:hover {
    transform: translateY(-3px);
}

.timeline-item:hover .timeline-month {
    color: #5a8f3d;
}

.timeline-item:hover .timeline-action {
    background: #5a8f3d;
    color: white;
    border-color: #5a8f3d;
}

/* ????????, ??? ?? ??????? ?? ????? */
.season-timeline {
    max-width: 100vw;
    box-sizing: border-box;
}

/* ????????? ???????? ???????? ??????????? */
.growth-page-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 5%;
    line-height: 1.7;
    color: #333;
}

.growth-page-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.growth-page-content h3 {
    font-size: 1.6rem;
    color: #5a8f3d;
    margin: 2.5rem 0 1.2rem 0;
    border-left: 4px solid #5a8f3d;
    padding-left: 15px;
}

.growth-page-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    text-align: justify;
}

.growth-page-content strong {
    color: #5a8f3d;
    font-weight: 600;
}

/* ???????????? */
@media (max-width: 768px) {
    .growth-page-content {
        padding: 30px 4%;
    }
    
    .growth-page-content h2 {
        font-size: 1.8rem;
    }
    
    .growth-page-content h3 {
        font-size: 1.4rem;
    }
    
    .growth-page-content p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .growth-page-content {
        padding: 25px 3%;
    }
    
    .growth-page-content h2 {
        font-size: 1.6rem;
    }
    
    .growth-page-content h3 {
        font-size: 1.3rem;
    }
}

/*---END TIMELINE---*/

/* ?????????????? ???????? */
.horseradish-timeline-horizontal {
  max-width: 100%;
  margin: 3rem auto;
  padding: 1rem 0;
}

.timeline-title {
  text-align: center;
  color: #3A5F0B;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  padding: 0 1rem;
}

.timeline-subtitle {
  text-align: center;
  color: #6B2737;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  padding: 0 1rem;
}

.timeline-scroll-container {
  overflow-x: auto;
  padding: 2rem 1rem;
  scroll-behavior: smooth;
}

.timeline-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0 3rem;
}

.timeline-item {
  width: 120px;
  flex-shrink: 0;
  position: relative;
}

.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px white;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  border: 1px solid #eee;
}

.timeline-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #3A5F0B;
}

.era-date {
  display: block;
  color: #6B2737;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.timeline-content ul {
  padding-left: 1.2rem;
  margin: 0;
}

.timeline-content li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.timeline-content li strong {
  color: #5C2E0E;
}

/* ????? ????? */
.prehistoric { background: #1E3F20; }
.early-cultivation { background: #2E4A11; }
.antiquity { background: #5C2E0E; }
.byzantine { background: #6B2737; }
.medieval { background: #3A5F0B; }
.exploration { background: #004225; }
.industrial { background: #2C5E1A; }
.modern { background: #5C2E0E; }
.future { background: #6B2737; }

/* ????????? */
.timeline-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 800px;
  padding: 0 1rem;
}

.nav-button {
  background: #3A5F0B;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button:hover {
  background: #6B2737;
  transform: scale(1.1);
}

.timeline-progress {
  flex-grow: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 11.11%; /* 1/9 */
  background: linear-gradient(to right, #1E3F20, #3A5F0B);
  transition: width 0.5s ease;
}

/* ???????????? */
@media (max-width: 992px) {
  .timeline-item {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .timeline-title {
    font-size: 1.8rem;
  }
  
  .timeline-item {
    width: 260px;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .nav-button {
    width: 40px;
    height: 40px;
  }
}

/*-----BENEFITS------*/
.benefit-page {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .benefit-header {
            text-align: center;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
            padding: 30px;
            border-radius: 10px;
            color: white;
        }
        
        .benefit-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .benefit-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .benefit-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .benefit-content {
                grid-template-columns: 1fr;
            }
        }
        
        .benefit-card {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-card h3 {
            color: #2e7d32;
            margin-top: 0;
            display: flex;
            align-items: center;
        }
        
        .benefit-card h3 i {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .benefit-image {
            text-align: center;
            margin: 30px 0;
        }
        
        .benefit-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .recipe-box {
            background: #e8f5e9;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #2e7d32;
            margin: 20px 0;
        }
        
        .recipe-title {
            font-weight: bold;
            color: #2e7d32;
            margin-bottom: 10px;
        }
        
        .warning-box {
            background: #ffebee;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #f44336;
            margin: 20px 0;
        }
        
        .conclusion {
            background: #e3f2fd;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin-top: 40px;
        }
        
        .btn {
            display: inline-block;
            background: #2e7d32;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #1b5e20;
        }

/*-----BENEFITS------*/

/*RECEPTES*/
/* ????? ??? ??????? ????????? ??????? */
.recent-posts-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 0;
    padding: 20px 0;
    list-style: none;
}

.recent-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recent-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(46, 125, 50, 0.85);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    line-height: 1.4;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: #2e7d32;
}

.post-excerpt {
    color: #546e7a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #90a4ae;
    border-top: 1px solid #eceff1;
    padding-top: 15px;
    margin-top: auto;
}

.post-category {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 8px;
    border-radius: 4px;
    text-decoration: none;
}

.post-comments {
    display: flex;
    align-items: center;
}

.post-comments::before {
    content: '??';
    margin-right: 5px;
}

/* ????? ??? ??????, ????? ??? ??????????? */
.no-thumbnail {
    background: linear-gradient(135deg, #a5d6a7 0%, #66bb6a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 42px;
    position: relative;
}

/* ???????????? */
@media (max-width: 768px) {
    .recent-posts-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .post-thumbnail {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .recent-posts-cards {
        grid-template-columns: 1fr;
    }
    
    .post-content {
        padding: 15px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/*RECEPTS END*/
