/* --- 1. VARIABLES --- */
:root {
    --color-turquoise: #40E0D0; 
    --color-beige: #ded4c0; 
    --color-brown: #523522; 
    --color-white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', serif; 
    --font-sans: 'Montserrat', sans-serif; 
    --font-hand: 'Monsieur La Doulaise', cursive; 
    --radius-soft: 20px;
    --radius-pill: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--color-beige); color: var(--color-brown); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; }
/* === FIX LINK COLORS (GLOBAL) === */
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
}
ul { list-style: none; padding-left: 0rem;}

/* Fonts Sizes */
.accent-font { font-family: var(--font-hand) !important; text-transform: none !important; letter-spacing: 0 !important; font-size: 3.5rem !important; line-height: 1.1; }
.accent-font-nav { font-family: var(--font-hand) !important; text-transform: none !important; font-size: 2.5rem !important; }
h2.accent-font { font-size: 3rem !important; }
h3.accent-font { font-size: 2.5rem !important; }
h4.accent-font { font-size: 2rem !important; }

.header {
    z-index: 1001;
}

/* Intro & Noise */
.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E"); opacity: 0.05; pointer-events: none; z-index: 90; }
.intro-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--color-brown); z-index: 1000; display: flex; justify-content: center; align-items: center; }
.intro-text { color: var(--color-beige); text-align: center; }
.intro-name { font-size: 6rem !important; opacity: 0; transform: translateY(20px); }
.intro-sub { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; margin-top: 10px; opacity: 0; }

/* Layout */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 6rem 0; border-bottom: 1px solid rgba(82, 53, 34, 0.1); }
.center-text { text-align: center; }
p, li { text-align: left; }
.center-text p { text-align: center; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }
.hero-title { font-size: clamp(3.5rem, 8vw, 6rem); color: var(--color-brown); margin-bottom: 2rem; text-align: left; }
.hero-subtitle { font-size: 1rem; text-transform: uppercase; margin-bottom: 1rem; text-align: left; }
.text-brown { color: var(--color-brown) !important; } 
.hero-promise { text-align: left; font-size: 1.2rem; margin-bottom: 2rem; }
.section-title { font-size: 3.5rem; margin-bottom: 3rem; color: var(--color-brown); }

/* Buttons */
.btn-pill, .btn-main { display: inline-flex; justify-content: center; align-items: center; text-align: center; border-radius: var(--radius-pill); transition: 0.3s; text-transform: uppercase; }
.btn-pill { padding: 0.8rem 1.5rem; border: 1px solid var(--color-turquoise); font-size: 0.8rem; color: #222;}
.btn-pill:hover { background: var(--color-turquoise); color: var(--color-brown); }

.btn-main { background: linear-gradient(135deg, var(--color-turquoise) 0%, #35b3a6 100%); color: var(--color-brown); padding: 1.2rem 3rem; font-size: 0.9rem; font-weight: 600; box-shadow: 0 10px 20px rgba(64, 224, 208, 0.2); }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(64, 224, 208, 0.4); }

/* === INTERACTIVE ZOOM CLASS === */
.interactive-zoom { 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    will-change: transform; 
    border-radius: 12px; 
}
.interactive-zoom:hover { 
    transform: scale(1.1) !important; 
    z-index: 50; 
    position: relative; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important; 
    background: var(--color-white); 
    color: var(--color-brown); 
}

.method-bad.interactive-zoom:hover { background: #E5E5E5 !important; }

.bg-turquoise .interactive-zoom:hover,
.bg-turquoise .interactive-zoom:hover * { 
    background: var(--color-white); 
    color: var(--color-brown) !important; 
}

/* Header */
.header { position: fixed; width: 100%; top: 0; padding: 1.5rem 0; z-index: 100; transition: 0.3s; background: rgba(222, 212, 192, 0.9); backdrop-filter: blur(5px); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 2rem; color: #222;}
.nav-links a {color: #222;}

/* Blocks */
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; padding-top: 100px; }
.img-container { position: relative; overflow: hidden; border-radius: var(--radius-soft); }
.img-content { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch-shape { aspect-ratio: 4/5; border-radius: 200px 200px 20px 20px; }
.oval-shape { aspect-ratio: 1/1; border-radius: 50%; }
.arch-tall { aspect-ratio: 3/4; border-radius: 20px 200px 20px 20px; }

/* --- GRID SYSTEM LEFT/RIGHT ENFORCEMENT --- */
.grid-img-left { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; } 
.grid-img-left .visual-block { grid-column: 1; }
.grid-img-left .content-block { grid-column: 2; }
.empathy-img { max-width: 350px; margin: 0 auto; display: block; }

.features-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); border: 1px solid var(--color-brown); border-radius: var(--radius-soft); overflow: visible; }
.f-cell { padding: 1.5rem; text-align: center; border-right: 1px solid var(--color-brown); background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.f-cell:last-child { border-right: none; }

.pain-grid {
    display: grid;
    gap: 2rem;
    margin: 4rem 0;
}

/* На десктопах - 3 колонки */
@media (min-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* На планшетах - 2 колонки */
@media (min-width: 768px) and (max-width: 1023px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* На мобильных - 1 колонка */
@media (max-width: 767px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}
.pain-card { background: var(--color-white); padding: 2.5rem; border-radius: var(--radius-soft); border: 1px solid rgba(82, 53, 34, 0.1); }

.bg-turquoise { background-color: var(--color-turquoise); color: var(--color-brown); }
.text-white { color: var(--color-brown); }
.zoom-text-box { padding: 1rem; background: white; border-radius: 12px; }
.zoom-text-box p { margin-bottom: 0rem; }
.cta-bio {
    display: flex;
    justify-content: center; /* Горизонтальное центрирование */
    align-items: center; /* Вертикальное центрирование (если нужно) */
    text-align: center; /* Центрирование текста внутри */
    margin-top: 3rem; /* mt-5 примерно равно 3rem */
}

/* Bio Centered Fix */
.bio-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; align-items: center; }
.centered-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.centered-content p { text-align: center; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.method-bad { opacity: 0.9; padding: 2rem; background: #E5E5E5; border-radius: var(--radius-soft); }
.method-good { padding: 2rem; background: white; border-radius: var(--radius-soft); border: 2px solid var(--color-turquoise); }

.scenarios-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; margin-top: 3rem; }
.scenario-item { background: white; padding: 1.2rem; border-radius: 10px; border: 1px solid rgba(0,0,0,0.05); text-align: left; }

li.interactive-zoom { padding: 1rem; margin-bottom: 0.5rem; }
.white-list li.interactive-zoom { padding-left: 2rem; }

.pricing-single-container { display: flex; justify-content: center; margin-top: 3rem; }
.price-card.single-mode { width: 350px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 3px solid var(--color-turquoise); background: white; padding: 2.5rem 2rem; border-radius: var(--radius-soft); }
.price { font-size: 3rem; font-family: var(--font-serif); color: var(--color-brown); display: block; }

.footer { background: var(--color-brown); color: var(--color-beige); padding: 1rem 0 1rem; text-align: center; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
.footer h4 { font-size: 3rem !important; margin-bottom: 1.5rem; color: var(--color-turquoise); }
.footer-bottom { border-top: 1px solid rgba(222, 212, 192, 0.1); padding-top: 2rem; font-size: 0.8rem; }
.footer a:hover { color: var(--color-turquoise); }

@media (max-width: 768px) {
    .footer-grid, .hero-grid, .bio-container, .comparison-grid, .features-table { display: flex; flex-direction: column; }
    /* Mobile Grid Reset */
    .grid-img-left { display: flex; flex-direction: column; gap: 2rem; } 
    .price-card.single-mode { width: 100%; }
}


/* Контактная секция */
.contact-section {
  padding: 60px 20px;
  background-color: var(--color-turquoise); /* светлый фон */
  text-align: center;
  font-family: Arial, sans-serif;
}

.contact-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #444;
}

/* Форма */
.form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #35b3a6;
  outline: none;
}

.btn-submit {
  display: inline-block;
  background-color: #444;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color .3s ease;
}

.btn-submit:hover {
  background-color: #333;
}

@media (max-width: 768px) {
    .interactive-zoom:hover {
        transform: none !important;
        box-shadow: none !important;
        background: inherit !important;
    }
}

#metodo,
#programma,
#prezzi {
    scroll-margin-top: 120px;
}

.header {
    overflow: hidden;
}

@media (max-width: 768px) {

    .header {
        padding: 0.8rem 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo {
        font-size: 2.8rem !important;
        line-height: 1;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        color: #222;
    }

    .nav-links a {
        color: #222;
    }
    .accent-font-nav {
        font-size: 2rem !important;
    }

    /* отключаем zoom на тач-устройствах */
    .interactive-zoom:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* ===== TABLET HEADER (768px – 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {

    .header {
        padding: 1rem 0;
    }

    .nav-container {
        gap: 1.5rem;
    }

    .logo {
        font-size: 3.5rem !important;
        white-space: nowrap;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    .accent-font-nav {
        font-size: 1.9rem !important;
    }

    /* убираем масштабирование — оно ломает layout */
    .interactive-zoom:hover {
        transform: none !important;
        box-shadow: none !important;
        background: transparent;
    }
}





/* Общий стиль для блока статей */
.article-block {
    background-color: antiquewhite;
    border: 2px solid #444;
    border-radius: 12px;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

/* Вариант с более выраженной тенью */
.article-block-alt {
    background-color: antiquewhite;
    border: 2px solid #444;
    border-radius: 10px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2),
                0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Стиль для элементов внутри блока статей (если нужно) */
.article-content {
    color: #333;
    line-height: 1.6;
}

/* Для постов WordPress (если это посты блога) */
article.post,
article.page {
    background-color: antiquewhite;
    border: 2px solid #444;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 30px;
    margin-bottom: 30px;
}

/* Если это контейнер для записей в цикле
.loop-item,
.blog-post,
.entry-content {
    background-color: antiquewhite;
    border: 2px solid #444;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin: 15px;
}
*/
/* Эффект при наведении (опционально) */
.article-block:hover,
article.post:hover {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Для адаптивности */
@media (max-width: 768px) {
    .article-block,
    article.post {
        border-radius: 8px;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 15px 0;
    }
}


/* Sidebar */

/* Кастомный сайдбар */
.custom-sidebar {
    background-color: antiquewhite;
    border: 2px solid #444;
    border-radius: 12px;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin-top: 30px;
}

/* Виджеты сайдбара */
.sidebar-widget {
    margin-bottom: 35px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: #444;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #444;
    font-family: 'Georgia', serif;
}

/* Стили для рубрик */
.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateX(5px);
}

.category-item.all-categories .category-name {
    font-weight: 700;
    color: #222;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.category-link:hover {
    background-color: #fff;
    border-color: #444;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.category-name {
    font-size: 15px;
    font-weight: 500;
}

.posts-count {
    background-color: #444;
    color: antiquewhite;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    min-width: 25px;
    text-align: center;
}

/* Стили для последних записей */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #444;
}

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

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

.post-content {
    flex-grow: 1;
}

.post-category {
    margin-bottom: 5px;
}

.post-category span {
    display: inline-block;
    background-color: #444;
    color: antiquewhite;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.post-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Адаптивность */
@media (max-width: 992px) {
    .custom-sidebar {
        margin-top: 40px;
    }

    .recent-post {
        flex-direction: column;
    }

    .post-thumbnail {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .custom-sidebar {
        padding: 20px;
        border-radius: 10px;
    }

    .widget-title {
        font-size: 18px;
    }
}

/* Sidebar */
.category-name::before {
    content: "📁 ";
    opacity: 0.7;
}

.category-item.all-categories .category-name::before {
    content: "📰 ";
}



/* Активная рубрика */
.category-link.active {
    background-color: #444 !important;
    color: antiquewhite !important;
    border-color: #444 !important;
}

.category-link.active .posts-count {
    background-color: antiquewhite !important;
    color: #444 !important;
}

/* Индикатор загрузки */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Плавные переходы */
.posts-container, .post-wrapper {
    transition: opacity 0.3s ease;
}

/********************/


/* Посты в Блогк */

/* Общие стили для поста */
.blog-post-item {
    background-color: antiquewhite;
    border: 2px solid #444;
    border-radius: 12px;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-post-item:hover {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* Заголовок на всю ширину */
.entry-header-fullwidth {
    margin-bottom: 25px;
    text-align: center;
}

.entry-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.entry-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #555;
}

/* Мета-информация */
.entry-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.posted-on {
    font-style: italic;
}

.cat-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tag {
    background-color: #444;
    color: antiquewhite;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Контейнер контента */
.entry-content-wrapper {
    padding: 15px 0;
}

/* Картинка поста */
.post-thumbnail-wrapper {
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #444;
    height: 100%;
    min-height: 220px;
}

.post-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

/* Заглушка для картинки */
.no-thumbnail {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.thumbnail-placeholder {
    text-align: center;
    color: #666;
}

.placeholder-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 14px;
}

/* Анонс поста */
.post-excerpt-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .post-excerpt-wrapper {
        padding-left: 0;
        padding-top: 20px;
    }
}

.entry-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.entry-excerpt p {
    margin-bottom: 0;
}

/* Кнопка "Читать далее" */
.read-more-wrapper {
    margin-top: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: antiquewhite;
    color: #444;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #444;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: transparent;
    color: #444;
    transform: translateX(5px);
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
    transform: translateX(3px);
}

/* Разделитель между постами */
.post-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #444, transparent);
    margin-top: 30px;
    opacity: 0.3;
}

/* Адаптивность */
@media (max-width: 768px) {
    .blog-post-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .entry-title {
        font-size: 20px;
    }

    .entry-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .post-thumbnail-wrapper {
        min-height: 180px;
    }

    .read-more-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Анимация появления постов при AJAX загрузке */
.post-wrapper {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*********************/

/* Страница поста */

/* Single Post Styles */
.single-post {
    /* background-color: antiquewhite;
    border: 2px solid #444;
    border-radius: 12px;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.15); */
    padding: 40px;
    margin-bottom: 40px;
}

.entry-header-single {
    margin-bottom: 30px;
    text-align: center;
}

.entry-title-single {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.entry-meta-single {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: #666;
    flex-wrap: wrap;
}

/* Большая картинка поста */
.post-thumbnail-single {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #444;
}

.single-post-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

/* Контент поста */
.entry-content-single {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-top: 30px;
}

.entry-content-single p {
    margin-bottom: 25px;
}

.entry-content-single h2,
.entry-content-single h3,
.entry-content-single h4 {
    color: #222;
    margin: 35px 0 20px;
}

/* Теги */
.entry-footer-single {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px dashed #444;
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tags-label {
    font-weight: 600;
    color: #444;
}

.post-tags a {
    background-color: #444;
    color: antiquewhite;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Навигация между постами */
.post-navigation {
    margin-top: 50px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 2px solid #444;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    flex: 0 1 48%;
}

.nav-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* Стили для активной рубрики на single странице */
.current-category .category-link {
    background-color: #444 !important;
    color: antiquewhite !important;
}

/* Адаптивность для single */
@media (max-width: 768px) {
    .single-post {
        padding: 25px;
    }

    .entry-title-single {
        font-size: 26px;
    }

    .entry-meta-single {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .nav-previous,
    .nav-next {
        width: 100%;
    }
}

/*************/

/* Всплывающее окно */

/* Модальное окно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background-color: antiquewhite;
    border: 3px solid #444;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background-color: #444;
    color: antiquewhite;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.modal-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Форма */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #444;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-label::after {
    content: ':';
}

.form-input,
.form-textarea {
    padding: 15px;
    border: 2px solid #444;
    border-radius: 10px;
    background-color: white;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #222;
    box-shadow: 0 0 0 3px rgba(68, 68, 68, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Кнопка отправки */
.submit-btn {
    background-color: #444;
    color: antiquewhite;
    border: 2px solid #444;
    border-radius: 10px;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-loader {
    display: none;
}

.spinner {
    animation: rotate 2s linear infinite;
}

.spinner .path {
    stroke: antiquewhite;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Уведомление */
.form-notice {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(68, 68, 68, 0.05);
    border-radius: 10px;
    border-left: 4px solid #444;
}

.form-notice p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Сообщения формы */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 2px solid #2ecc71;
    color: #27ae60;
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
    color: #c0392b;
}

/* Затемнение фона */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

/* Адаптивность */
@media (max-width: 600px) {
    .modal-container {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Анимация закрытия */
.modal-closing {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(50px);
    }
}

/* Если сообщение все равно не видно, добавьте это: */
#modalFormMessage {
    position: relative !important;
    z-index: 100000 !important;
    background-color: antiquewhite !important;
    border: 2px solid #444 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3) !important;
}

/* Новый wrapper для центрирования */
.modal-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Контейнер без ограничений по высоте */
.modal-container {
    background-color: antiquewhite;
    border: 3px solid #444;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

/* Контент с авто-прокруткой если нужно */
.modal-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px; /* Для скроллбара */
}

/* Стили для скроллбара */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(68, 68, 68, 0.1);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}
/***********************/

/* Чат-бот */

#whatsapp-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
    border: 2px solid #444;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Заголовок чата */
.chat-header {
    background: #444;
    color: antiquewhite;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0; /* Не сжимается */
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-icon {
    font-size: 20px;
}

.chat-name {
    font-weight: 600;
    font-size: 16px;
}

.chat-status {
    font-size: 12px;
    opacity: 0.8;
}

.chat-status.online {
    color: #4CAF50;
}

.chat-minimize {
    background: none;
    border: none;
    color: antiquewhite;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Тело чата - ИСПРАВЛЕННЫЙ ВАРИАНТ */
.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    min-height: 0; /* ← КРИТИЧЕСКИ ВАЖНО для прокрутки в flex */
}

/* Область сообщений - ИСПРАВЛЕННЫЙ ВАРИАНТ */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto; /* Прокрутка */
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0; /* ← КРИТИЧЕСКИ ВАЖНО */
}

/* Стили сообщений */
.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
    line-height: 1.4;
    flex-shrink: 0; /* Сообщения не сжимаются */
}

.message.sent {
    background: #444;
    color: antiquewhite;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message.received {
    background: white;
    color: #333;
    align-self: flex-start;
    border: 1px solid #ddd;
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
    text-align: right;
}

/* Область ввода */
.chat-input-area {
    border-top: 1px solid #eee;
    background: white;
    padding: 15px;
    flex-shrink: 0; /* Не сжимается */
}

#chat-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#chat-message-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #444;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

#chat-message-input:focus {
    border-color: #222;
}

#chat-send-btn {
    background: #444;
    color: antiquewhite;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

#chat-send-btn:hover {
    background: #222;
}

.chat-notice {
    font-size: 12px;
    color: #666;
    text-align: center;
    padding: 5px;
}

/* Кнопка открытия чата */
.whatsapp-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #444;
    color: antiquewhite;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.whatsapp-chat-toggle:hover {
    background: #222;
    transform: scale(1.05);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message {
    animation: fadeIn 0.3s ease;
}

/* Стили для скроллбара (дополнительно) */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    #whatsapp-chat-widget {
        width: calc(100% - 40px);
        height: 70vh;
        right: 20px;
        left: 20px;
        bottom: 90px;
    }
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0;

    /* Решение проблемы со скролл-цепочкой */
    overscroll-behavior: contain; /* ← ЭТА СТРОКА РЕШАЕТ ПРОБЛЕМУ */
}

/* Для мобильных можно добавить еще это */
@media (max-width: 768px) {
    #whatsapp-chat-widget {
        overscroll-behavior: contain;
    }
}


/* ===== DROPDOWN MENU ===== */

.nav-item {
    position: relative;
}

.has-dropdown {
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.25s ease;
}

/* скрыто по умолчанию */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 0.8rem 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

/* ссылки внутри */
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.4rem;
    font-size: 2rem;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(0,0,0,0.05);
}

/* hover desktop */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header,
.nav-container {
    overflow: visible !important;
}

.header {
    z-index: 9999;
}

.nav-links {
    overflow: visible;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
}

.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== НОВЫЕ СТИЛИ ===== */
.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-header-btn {
    display: none;
}

/* ===== БУРГЕР-МЕНЮ ===== */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Анимация бургера при открытии */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== МЕДИА-ЗАПРОСЫ ===== */
@media (max-width: 768px) {
    /* Сброс десктопных стилей для мобильных */
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-dropdown:hover .dropdown-arrow {
        transform: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: none;
        overflow: visible;
        transition: none;
    }

    .dropdown-menu a {
        padding: 0.4rem 0 0.4rem 1.5rem;
        font-size: 1.6rem;
        white-space: normal;
    }

    /* Бургер */
    .burger-menu {
        display: flex;
    }

    /* Кнопка рядом с бургером */
    .mobile-header-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0.6rem 1.2rem; /* Уменьшил padding */
        border: 1px solid var(--color-turquoise, #4ECDC4);
        font-size: 0.75rem; /* Уменьшил размер шрифта */
        color: #222;
        border-radius: 12px;
        text-decoration: none;
        text-transform: uppercase;
        transition: 0.3s;
        margin-left: auto;
        white-space: nowrap;
    }

    .mobile-header-btn:hover {
        background: var(--color-turquoise, #4ECDC4);
        color: var(--color-brown, #8B5A2B);
    }

    /* Скрываем десктопную кнопку */
    .desktop-btn {
        display: none;
    }

    /* Контейнер навигации */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }

    /* Меню - УМЕНЬШЕННЫЕ ОТСТУПЫ */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 280px; /* Уменьшил максимальную ширину */
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 20px 15px 20px; /* Уменьшил отступы */
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    /* УМЕНЬШЕННЫЕ ОТСТУПЫ ДЛЯ ССЫЛОК */
    .nav-links > a {
        font-size: 1.6rem; /* Уменьшил с 1.8rem до 1.6rem */
        padding: 0.7rem 0; /* Уменьшил с 1rem до 0.7rem */
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05); /* Легкий разделитель */
    }

    /* Стили для dropdown на мобильных */
    .has-dropdown {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 0rem 0rem; /* Уменьшил с 1rem до 0.7rem */
        font-size: 1.6rem; /* Добавил размер шрифта */
    }

    .nav-link .dropdown-arrow {
        display: inline-block;
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    /* Подменю всегда открыто - УМЕНЬШЕННЫЕ ОТСТУПЫ */
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: none;
        overflow: visible;
        margin-top: 0; /* Убрал отступ сверху */
        margin-bottom: 0.3rem; /* Уменьшил отступ снизу */
        width: 100%;
    }

    /* Стрелка указывает вниз (подменю открыто) */
    .has-dropdown .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Ссылки подменю - УМЕНЬШЕННЫЕ ОТСТУПЫ */
    .has-dropdown .dropdown-menu a {
        padding: 0.5rem 0 0.5rem 2rem; /* Уменьшил вертикальный padding */
        font-size: 1.4rem; /* Уменьшил с 1.6rem до 1.4rem */
        border-left: 2px solid var(--color-turquoise, #4ECDC4);
        margin: 0; /* Убрал margin */
        background: rgba(78, 205, 196, 0.03); /* Более прозрачный фон */
        border-radius: 0 4px 4px 0;
    }

    .has-dropdown .dropdown-menu a:last-child {
        margin-bottom: 0.3rem; /* Небольшой отступ после последнего пункта */
    }

    .has-dropdown .dropdown-menu a:hover {
        background: rgba(78, 205, 196, 0.1);
    }

    /* Затемнение фона */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .mobile-header-btn {
        padding: 0.5rem 1rem; /* Еще меньше на маленьких экранах */
        font-size: 0.7rem;
    }

    .nav-links {
        max-width: 250px; /* Еще уже на маленьких экранах */
        padding: 60px 12px 15px;
    }

    .nav-links > a {
        font-size: 1.4rem;
        padding: 0.6rem 0;
    }

    .nav-link {
        font-size: 1.4rem;
        padding: 0.6rem 0;
    }

    .has-dropdown .dropdown-menu a {
        padding: 0.4rem 0 0.4rem 1.8rem;
        font-size: 1.3rem;
    }
}

/* Для очень высоких экранов - добавляем скролл если нужно */
@media (max-height: 700px) {
    .nav-links {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .nav-links > a {
        padding: 0.5rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .has-dropdown .dropdown-menu a {
        padding: 0.4rem 0 0.4rem 2rem;
    }
}



/* ===== CONTENT LINKS ===== */
.single-post a, {
    color: #2c5282 !important; /* темно-синий для контраста с antiquewhite */
    text-decoration: none;
    text-decoration-color: #2c5282 !important;
    text-decoration-thickness: 1.5px !important;
    text-underline-offset: 4px !important;
    font-weight: 600 !important;
}

.single-post a:visited, {
    color: #6b46c1 !important; /* контрастный фиолетовый */
    text-decoration-color: #6b46c1 !important;
}

.single-post a:hover,{
    color: #1a365d !important; /* еще темнее при наведении */
    text-decoration-thickness: 2.5px !important;
    background-color: rgba(44, 82, 130, 0.08) !important;
    padding: 0 2px;
    margin: 0 -2px;
    border-radius: 2px;
}

/* Стили для блога Автор */
.author-links {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.author-tag {
    background-color: antiquewhite;
    color: #222;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.author-tag:hover {
    background-color: antiquewhite;
    transform: translateY(-2px);
}

.accordion-button {
    background: #ded4c0;
}
.accordion-collapse {
    background: #ded4c0;
}