/*
Theme Name: Vicious Darkstar
Template: twentytwentyfour
Author: GTM Dev
Version: 1.2
Description: Кастомная тема под Figma-макет Vicious Darkstar.
*/

/* === БАЗОВЫЕ СТИЛИ === */
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
  scroll-padding-top: 90px; /* чтобы контент не залезал под шапку */
}

/* === HEADER === */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  -webkit-transform: translateZ(0); /* форсирует слой GPU */
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  will-change: opacity; /* предотвращает пересчёт layout */
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}

.site-header.scrolled::before {
  opacity: 1;
}


.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 77px;
  display: block;
}

/* === МЕНЮ === */
.main-nav {
  position: relative;
  z-index: 5;
}

.main-nav ul {
  box-sizing: border-box;
}
.main-nav li a {
  box-sizing: border-box;
}

/* капсула */
.main-nav ul {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 57px;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 50px;
    border: 0;
    overflow: hidden;
    gap: 0;
    color: #ffffff;
    background: rgb(125 125 125 / 20%);
    backdrop-filter: none;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
}

.main-nav li {
    max-height: 49px;
    display: flex
;
    align-items: center;
    margin-left: 4px;
    padding: 0;
    margin-right: 4px;
    height: 100%;
}

.main-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 32px;
  font-weight: 600;
  font-size: 17px;
  color: rgba(217, 217, 217, 1);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.25s ease;
      border: 0;
}

/* hover + active */
.main-nav li a:hover,
.main-nav li.current-menu-item a,
.main-nav li a.active {

    color: #ffffff;
        background: rgb(125 125 125 / 20%);
    backdrop-filter: none;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
    border: 0;
}


/* === СОЦСЕТИ === */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icons .icon {
  width: 57px;
  height: 57px;
  background: rgb(125 125 125 / 12%);
    backdrop-filter: none;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
    border: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.header-icons .icon:hover {
  background: #e00;
  border-color: #e00;
  transform: scale(1.05);
}

/* === БУРГЕР === */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* бургер активный */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.poetry-card:hover {


}

.poetry-card .btn-icon {
    background: rgb(125 125 125 / 12%);
    backdrop-filter: none;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
    border: 0;
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
  .main-nav ul {

  }
  .main-nav li a {

    padding: 0 20px;

}
.header-logo img {

    max-height: 66px;
}
}
.mob-soc {
    display: none;
  }
@media (max-width: 768px) {

  /* Бургер всегда виден */
  .burger {
    display: flex !important;
    z-index: 101;
  }

  /* Соцсети по умолчанию скрываем */
  .header-icons {
    display: none;
  }

  /* Показываем соцсети, когда меню открыто */


  /* Мобильное меню */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(20, 0, 0, 0.96);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 20px;
    z-index: 100;
  }

  .main-nav.open {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .main-nav ul {
    flex-direction: column;
    background: none;
    box-shadow: none;
    gap: 25px;
    height: auto;
    padding: 0;
  }

  .main-nav li a {
    padding: 12px 30px;
  }
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === АДАПТИВ ДЛЯ КОНТЕЙНЕРА === */
@media (max-width: 1440px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-logo img {
    height: 62px;
  }

  .site-header {
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }



  .main-nav ul {
    gap: 18px;
  }

  .main-nav li a {
    font-size: 15px;
  }
}


@media (max-width: 1024px) {
  .container { padding: 0 25px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}



.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  padding-top: 200px; /* чтобы фон шёл под шапку */

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-slider {
  position: relative;
  z-index: 2;
}

.hero-slide {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.hero-badge {
  height: 20px;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 17px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

/* === КНОПКА ОСНОВНАЯ === */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 20px;
  background: linear-gradient(180deg, #ff2424 0%, #b60000 100%);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,0.3),
    0 6px 14px rgba(255,0,0,0.25);
  transition: all 0.3s ease;
  position: relative;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.35),
    0 8px 16px rgba(255,0,0,0.4);
}

/* Текст */
.btn-main .btn-text {
  display: flex;
  align-items: center;
}

/* Иконки справа */
.btn-main .btn-icons {
    display: flex
;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 5px;
    border-radius: 20px;
}

.btn-main .btn-icons img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* === КНОПКА-КРУГ (AMAZON) === */
.btn-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 0;
    transition: all 0.3s 
ease;
    background: rgb(125 125 125 / 20%);
    backdrop-filter: none;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
    border: 0;
}
.btn-icon:hover {
  background: #e00;
  border-color: #e00;
}

.btn-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;

}


.hero-age {
  font-weight: 800;
  font-size: 24px;
  color: #e00;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-age .age-label {
  font-size: 12px;
  font-weight: 600;
  background: #111;
  padding: 3px 10px;
  border-radius: 4px;
  color: #fff;
}

.hero-image {
  flex: 0 0 420px;
  text-align: right;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 16px 46px 0px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;

}

/* Фон с брызгами */
.hero-image .hero-splash {
    position: absolute;
    top: -70%;
    left: -70%;
    width: 240%;
    height: 240%;
    background: url(../viciousdarkstar/images/red-splash2.png);
    z-index: 1;
    opacity: 1;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}




/* === Slick === */
.slick-dots {
  bottom: 20px;
}
.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
}
.slick-dots li.slick-active button:before {
  color: #e00;
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
  .hero-title { font-size: 48px; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
.poetry-buttons .btn-icon {
    width: 54px;
    height: 54px;
    display: flex

}

.poetry-buttons  .btn-main {
        padding: 15px 15px;
        font-size: 14px;
        gap: 10px;
    } 


  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-image { margin-top: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }

	

}


/* === FOOTER ПОД СЛАЙДЕРОМ === */
.hero-footer .container {
    position: relative;
    margin-top: 60px;
    border-top: 0;
   
    padding: 25px 40px;
    background: transparent;
}

.hero-footer-inner {
display: flex
;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(39 39 39);
    padding-bottom: 50px;
}

/* Левая часть — 18+ */
.hero-age {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
}

.hero-age .age-top {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero-age .age-number {
  font-weight: 800;
  font-size: 32px;
  color: #e00; /* красне */
}

.hero-age .age-plus {
  font-weight: 800;
  font-size: 32px;
  color: #fff; /* білий */
}

.hero-age .age-label {
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}


.hero-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* все точки */
.hero-dot {
  position: relative;
  width: 20px;          /* базовая ширина */
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* активная — длиннее и ярче */
.hero-dot.active {
  width: 50px;
  background: rgba(255,255,255,0.15);
}

/* внутренний прогресс */
.hero-dot span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #e00;
}

/* только активная заполняется */
.hero-dot.active span {
  width: 100%;
}


.hero-scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;

}

.hero-scroll-line {
width: 2px;
    height: 52px;
    background: #fff;
    transition: all 0.3s 
ease;
}

.hero-scroll span {
writing-mode: vertical-rl;
    transform: rotate(360deg);
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s 
ease;
}

/* Ховер-анімація */
.hero-scroll:hover .hero-scroll-line {
  height: 60px;
  background: #fff;
}
.hero-scroll:hover span {
  color: #fff;
}


/* Адаптив */
@media (max-width:768px) {
  .hero-footer-inner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .hero-scroll { display: none; }
}
.about-section {
color: #fff;
    padding: 140px 0;
    background-size: cover;
    background-position: top center;
}

.about-wrapper {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}

/* Колонки */
.about-col {
  flex: 1;
}

/* SVG ABOUT */
.about-svg img {
  width:100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}

/* Автор */
.about-author {
  position: relative;
  margin-left: -100px; /* Заходит немного под ABOUT */
}

.about-author img {
  display: block;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.7));
}

.about-logo {
  display: block;
  margin: 20px auto 0;
  width: 220px;
}

/* Текст */
.about-text {
  max-width: 520px;
}

.about-line {
  width: 40px;
  height: 2px;
  background: #e00;
  margin-bottom: 20px;
}

.about-svg{
    margin-top: -20%;
	    z-index: 1;
}

.about-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #ffffff;
}

/* --- Адаптив --- */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-author {
    margin-left: 0;
  }

  .about-svg img {
    margin: 0 auto;
  }

  .about-text {
    max-width: 100%;
  }
  
  .about-svg img {
        max-height: 30px;
    }
	
	.about-section {

    padding: 60px 0;
}

.about-svg {
    margin-top: 0;
}

.poetry-cover img {
    width: 100%!important;

}


}

.poetry-section {
    padding: 100px 0;
    color: #fff;
    background-size: cover;
}

.poetry-title {
  margin-bottom: 60px;
}

.poetry-title img {
  width: 240px; /* подгони под макет */
  height: auto;
  display: block;
}

.poetry-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.poetry-card-shadow{
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-radius: 34px;
}

.poetry-card {
    display: flex
;
    align-items: stretch;
    gap: 40px;
    border-radius: 34px;
    padding: 40px;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
    border: 0;
    background: rgb(19 19 19 / 29%);
    backdrop-filter: blur(5px);
    border-bottom: 0;
}

.poetry-cover img {
  width: 300px;
  border-radius: 10px;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.7));
      height: auto;
}


.poetry-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

.poetry-content p {
font-family: 'Manrope', sans-serif;
    color: #dcdcdc;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.poetry-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Только обёртка кнопок для карточек */
.poetry-buttons {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}


.btn-buy {
  background: #e00;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-buy:hover {
  background: #ff2a2a;
  transform: translateY(-2px);
}

.btn-buy img {
  width: 22px;
  height: 22px;
}

.btn-amazon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-amazon:hover {
  background: rgba(255,255,255,0.15);
}

.btn-amazon img {
  width: 22px;
  height: 22px;
}

/* --- Адаптив --- */
@media (max-width: 992px) {
  .poetry-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
	        padding: 20px;
  }
  
  .poetry-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    text-align: left;
    margin-top: 0px;
}

.poetry-content p {
    font-family: 'Manrope', sans-serif;
    color: #dcdcdc;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
    text-align: left;
}

  .poetry-buttons {
    justify-content: space-between;
  }
}


/* === FOOTER === */
.site-footer {
color: #aaa;
    padding: 25px 0;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
    border-top: 2px solid rgb(255 255 255 / 19%);
    background: rgb(19 19 19 / 29%);
    background-image: url(https://viciousdarkstar.com/wp-content/themes/viciousdarkstar/images/poetry-bg.webp);
    background-size: cover;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  max-height: 77px;
  width: auto;
  display: block;
}

.footer-copy {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
}

/* Иконки (точно как в шапке) */
.footer-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-icons .icon {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: background 0.3s 
ease;
    background: rgb(125 125 125 / 12%);
    backdrop-filter: none;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
    border: 0;
}

.footer-icons .icon:hover {
 background: #e00;
}

.footer-icons .icon img {
  width: 22px;
  height: 22px;
}



/* --- Адаптив --- */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-copy {
    order: 3;
  }

  .footer-logo {
    order: 1;
  }

  .footer-icons {
    order: 2;
  }
}

@media (max-width: 768px) {
  .site-header {
    left: 0;
    right: 0;
    width: 100vw; /* чтобы растянуть ровно по экрану */
    max-width: 100vw;

    padding: 15px 0; /* заменяет старое 25px */
    box-sizing: border-box;
  }

  .site-header .container {
    padding: 0 15px; /* внутренние отступы, чтобы не липло к краям */
  }

  html, body {
    overflow-x: hidden; /* чтобы не появлялся горизонтальный скролл */
  }
}


@media (max-width: 768px) {

  /* === Мобильное меню === */
  .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        z-index: 100;
        padding: 0;
        box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.10) inset;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
  }

  .main-nav.open {
    display: flex;
    animation: fadeIn 0.3s ease;
	
  }
  
.menu-primary-menu-container{
    width: 100%;
}

  /* Список ссылок */
  .main-nav ul {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        background: transparent;
        border: none;
        box-shadow: none;
  }

  /* Пункты */
  .main-nav li {
        width: 100%;
        text-align: center;
        display: block;
        height: 50px;
        line-height: 50px;
  }

  .main-nav li a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;

        padding: 0;
  }

  /* Разделительные линии */
  .main-nav li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0;        box-shadow: none;
  }

  .main-nav li a:hover,
  .main-nav li a.active {
    color: #ff2a2a;
    background: none;
		border-radius: 0;
  }

  /* === Соцсети под меню === */
  .main-nav.open .mob-soc {
    display: flex !important;
    justify-content: center;
    margin: 25px 0 10px;
    gap: 15px;
  }

  .header-icons {
    display: none;
  }

  /* Контейнер и бургер */
  .site-header .container {
    padding: 0 20px;
  }

  .burger {
    display: flex !important;
    z-index: 101;
  }

  html, body {
    overflow-x: hidden;
  }
  
  
  .hero-section {
        padding-top: 100px;
        background-position: top left;
}
}


@media (max-width: 768px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-inner .btn-main {
    gap: 10px;
    padding: 17px 15px;
    font-size: 16px;
 }
  /* В hero-content задаём порядок внутренних элементов */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

     .hero-title {
        order: 1;
        font-size: 36px;
        text-align: left;
        width: 100%;
    }

  .hero-badge { order: 2; margin: 15px 0;         max-width: 300px;
}
    .hero-text {
        z-index: 8;
        order: 3;
        margin-bottom: 20px;
        text-align: left;
        font-size: 15px;
        color: #f0f0f0;
        line-height: 26px;
    }
  .hero-image { order: 4; margin-bottom: 25px; }
  .hero-buttons { order: 5; }

  .hero-image img {
    max-width: 320px;
    height: auto;
  }

  .hero-buttons {
   justify-content: space-between;
        margin-top: 10px;
        width: 100%;
		        margin-bottom: 10px;
  }
  .about-author img {

    max-width: 100%;
}

.about-line {

    display: none;
}

.about-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    text-align: left;
	        margin: 0;
}

.poetry-title img {
    width: 100%;
    max-width: 100%;
    height: 30px;
    display: block;
}

.poetry-section {
    padding: 60px 0;
}

}

/* По умолчанию скрываем мобильную картинку */
.hero-image-mobile {
  display: none!important;
}

/* На мобильных — показываем её, а десктопную прячем */
@media (max-width: 768px) {
  .hero-image-mobile {
    display: block!important;
    margin: 15px auto;
    text-align: center;
	        width: 100%;
  }

  .hero-image-mobile img {
          width: 100%;
        max-width: 100%;
        height: auto;
  }

  .hero-inner > .hero-image {
    display: none!important;
  }
  
  .hero-footer .container {
    position: relative;
    margin-top: 0;
    border-top: 0;
    padding: 25px 20px;
    background: transparent;
	padding-top: 10px;
}

.hero-age {
    display: flex
;
    flex-direction: row;
    align-items: center;
    line-height: 1;
    gap: 4px;
    align-content: center;
}
}
