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

        body {
            background-color: #faf8f6;
            font-family: 'Inter', sans-serif;
            color: #1e1e1e;
            line-height: 1.6;
            padding: 1.5rem 1.2rem;
            opacity: 0;
            animation: bodyFadeIn 0.8s ease forwards;
        }

        @keyframes bodyFadeIn {
            0% { opacity: 0; transform: translateY(12px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* ===== ШАПКА ===== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1.8rem;
            border-bottom: 1px solid #e6e2dc;
            margin-bottom: 2.8rem;
            flex-wrap: wrap;
            gap: 0.8rem;
            opacity: 0;
            animation: slideDown 0.6s ease forwards;
            animation-delay: 0.1s;
        }

        @keyframes slideDown {
            0% { opacity: 0; transform: translateY(-18px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #1e1e1e;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease, transform 0.2s ease;
            display: inline-block;
        }

        .logo:hover {
            border-bottom-color: #1e1e1e;
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            font-weight: 400;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #2b2b2b;
            border-bottom: 1px solid transparent;
            padding-bottom: 0.2rem;
            transition: border-color 0.3s ease, color 0.2s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #1e1e1e;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            border-bottom-color: #1e1e1e;
        }

        .nav-links a.active::after {
            width: 100%;
        }

        /* ===== ГАМБУРГЕР ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            z-index: 1001;
            transition: transform 0.2s ease;
        }

        .hamburger:hover {
            transform: scale(1.05);
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 2px;
            background-color: #1e1e1e;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(250, 248, 246, 0.97);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 1000;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2.2rem;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .mobile-menu-overlay.open {
            display: flex;
            opacity: 1;
            pointer-events: auto;
            animation: overlayFade 0.35s ease forwards;
        }

        @keyframes overlayFade {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        .mobile-menu-overlay a {
            font-size: 2rem;
            font-weight: 300;
            text-decoration: none;
            color: #1e1e1e;
            letter-spacing: 0.02em;
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s ease, transform 0.2s ease;
            padding: 0.3rem 0.5rem;
            opacity: 0;
            transform: translateY(20px);
            animation: menuItemFade 0.4s ease forwards;
        }

        .mobile-menu-overlay a:nth-child(1) { animation-delay: 0.05s; }
        .mobile-menu-overlay a:nth-child(2) { animation-delay: 0.10s; }
        .mobile-menu-overlay a:nth-child(3) { animation-delay: 0.15s; }
        .mobile-menu-overlay a:nth-child(4) { animation-delay: 0.20s; }
        .mobile-menu-overlay a:nth-child(5) { animation-delay: 0.25s; }

        @keyframes menuItemFade {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .mobile-menu-overlay a:hover {
            border-bottom-color: #1e1e1e;
            transform: translateX(4px);
        }

        .mobile-menu-overlay a.active {
            border-bottom-color: #1e1e1e;
        }

        /* ===== ГЕРОЙ ===== */
        .hero {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: flex-start;
            margin-bottom: 4.5rem;
            opacity: 0;
            animation: heroFade 0.9s ease forwards;
            animation-delay: 0.2s;
        }

        @keyframes heroFade {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-image {
            flex: 1 1 240px;
            max-width: 340px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-radius: 2px;
            overflow: hidden;
        }

        .hero-image:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1.2;
            object-fit: cover;
            background: #dbd7d1;
            display: block;
            transition: transform 0.6s ease;
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }

        .hero-about {
            flex: 2 1 360px;
        }

        .hero-about h1 {
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 0.3rem;
            line-height: 1.1;
        }

        .hero-about .subhead {
            font-size: 1rem;
            font-weight: 400;
            color: #5a5a5a;
            border-bottom: 1px solid #d0cbc4;
            padding-bottom: 1rem;
            margin-bottom: 1.2rem;
            letter-spacing: 0.02em;
        }

        .bio-text {
            font-size: 1.05rem;
            font-weight: 300;
            max-width: 580px;
            color: #2c2c2c;
        }

        .bio-text p {
            margin-bottom: 0.8rem;
        }

        .bio-text .highlight {
            font-weight: 400;
            color: #1e1e1e;
        }

        /* ===== УЛУЧШЕННЫЙ БЛОК «О СЕБЕ» С ЦИФРАМИ ===== */
        .bio-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem 2.5rem;
            margin: 1.2rem 0 1rem;
            padding: 1rem 0;
            border-top: 1px solid #f0ebe4;
            border-bottom: 1px solid #f0ebe4;
        }

        .bio-stats .stat {
            display: flex;
            flex-direction: column;
        }

        .bio-stats .stat .number {
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: #1e1e1e;
        }

        .bio-stats .stat .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #6b655c;
            font-weight: 300;
        }

        .bio-cta {
            display: inline-block;
            margin-top: 0.6rem;
            font-weight: 400;
            color: #1e1e1e;
            text-decoration: none;
            border-bottom: 1px solid #cbc3b8;
            transition: border-color 0.3s ease, transform 0.2s ease;
            padding-bottom: 1px;
        }

        .bio-cta:hover {
            border-bottom-color: #1e1e1e;
            transform: translateX(4px);
        }

        /* ===== РУБРИКИ ===== */
        .section-title {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: -0.01em;
            margin-bottom: 2rem;
            border-bottom: 1px solid #d6d0c8;
            padding-bottom: 0.6rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .section-title .see-all {
            font-size: 0.85rem;
            font-weight: 400;
            color: #6b655c;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease, color 0.2s ease;
        }

        .section-title .see-all:hover {
            border-bottom-color: #6b655c;
            color: #1e1e1e;
        }

        .genres-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.8rem;
            margin-bottom: 4rem;
        }

        .genre-card {
            background: #ffffff;
            padding: 1.8rem 1.5rem;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            border: 1px solid #ece8e2;
            transition: all 0.35s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: cardFade 0.6s ease forwards;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .genre-card:nth-child(1) { animation-delay: 0.1s; }
        .genre-card:nth-child(2) { animation-delay: 0.2s; }
        .genre-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes cardFade {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .genre-card:hover {
            border-color: #b9b2a8;
            background: #fefcf9;
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }

        .genre-card .icon {
            font-size: 1.6rem;
            display: block;
            margin-bottom: 0.4rem;
        }

        .genre-card h3 {
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            margin-bottom: 0.3rem;
            transition: color 0.2s ease;
        }

        .genre-card:hover h3 {
            color: #000;
        }

        .genre-card p {
            font-size: 0.9rem;
            color: #4d4d4d;
            font-weight: 300;
        }

        .genre-card .count {
            display: inline-block;
            margin-top: 0.8rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #6b655c;
            border-top: 1px solid #ddd8d0;
            padding-top: 0.7rem;
            transition: color 0.2s ease;
        }

        .genre-card:hover .count {
            color: #1e1e1e;
        }

        /* ===== ПУБЛИКАЦИИ ===== */
        .publications {
            margin-bottom: 4.5rem;
            opacity: 0;
            animation: heroFade 0.8s ease forwards;
            animation-delay: 0.25s;
        }

        .pub-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem 2.5rem;
            background: #f5f2ed;
            padding: 2rem 2.2rem;
            border-radius: 6px;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .pub-grid:hover {
            background: #f3efe9;
            box-shadow: inset 0 0 0 1px #e0dad2;
        }

        .pub-item {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 0.3rem 0.8rem;
            transition: transform 0.25s ease;
            flex: 1 1 200px;
        }

        .pub-item:hover {
            transform: translateX(6px);
        }

        .pub-item .year {
            font-weight: 300;
            color: #555;
            font-size: 0.85rem;
            min-width: 3.2rem;
            transition: color 0.2s ease;
        }

        .pub-item:hover .year {
            color: #1e1e1e;
        }

        .pub-item a {
            font-weight: 400;
            color: #1e1e1e;
            text-decoration: none;
            border-bottom: 1px solid #cbc3b8;
            padding-bottom: 1px;
            transition: border-color 0.3s ease, color 0.2s ease;
        }

        .pub-item a:hover {
            border-bottom-color: #1e1e1e;
            color: #000;
        }

        .pub-item .note {
            font-size: 0.8rem;
            color: #6f685e;
            font-weight: 300;
        }

        .pub-item .desc {
            width: 100%;
            font-size: 0.8rem;
            font-weight: 300;
            color: #6b655c;
            margin-top: 0.1rem;
            padding-left: 3.2rem;
        }

        /* ===== ПОДПИСКА ===== */
        .subscribe {
            background: #ffffff;
            border: 1px solid #e3ddd5;
            padding: 2.5rem 2.2rem;
            border-radius: 6px;
            margin-bottom: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            opacity: 0;
            animation: slideDown 0.7s ease forwards;
            animation-delay: 0.3s;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .subscribe:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
            border-color: #ccc5bb;
        }

        .subscribe-text h4 {
            font-size: 1.3rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            margin-bottom: 0.1rem;
        }

        .subscribe-text p {
            font-weight: 300;
            color: #3f3f3f;
            font-size: 0.95rem;
        }

        .subscribe-text .bonus {
            font-size: 0.8rem;
            color: #6b655c;
            margin-top: 0.2rem;
        }

        .subscribe-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
            flex: 1 1 320px;
        }

        .subscribe-form .input-wrap {
            position: relative;
            flex: 2 1 200px;
        }

        .subscribe-form .input-wrap .icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.9rem;
            color: #6b655c;
        }

        .subscribe-form input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.4rem;
            border: 1px solid #d3ccc2;
            border-radius: 4px;
            background: #fcfaf8;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }

        .subscribe-form input:focus {
            border-color: #6b5f4f;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(107, 95, 79, 0.1);
            transform: scale(1.01);
        }

        .subscribe-form input:hover {
            border-color: #b0a69a;
        }

        .subscribe-form button {
            background: #1e1e1e;
            color: #fcfaf8;
            border: none;
            padding: 0.8rem 1.8rem;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.03em;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
        }

        .subscribe-form button:hover {
            background: #3a3a3a;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        .subscribe-form button:active {
            transform: scale(0.97);
        }

        /* ===== ФУТЕР ===== */
        .footer {
            font-size: 0.8rem;
            color: #6b655c;
            border-top: 1px solid #e0dad2;
            padding-top: 2rem;
            margin-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
            opacity: 0;
            animation: heroFade 0.6s ease forwards;
            animation-delay: 0.4s;
        }

        .footer a {
            color: #2b2b2b;
            text-decoration: none;
            border-bottom: 1px dotted #cbc3b8;
            transition: border-color 0.3s ease, color 0.2s ease;
        }

        .footer a:hover {
            border-bottom-style: solid;
            color: #000;
        }

        /* ===== АДАПТИВ ===== */
        @media (max-width: 820px) {
            body { padding: 1.2rem 1rem; }
            .hero-about h1 { font-size: 2.4rem; }
            .hero-image { max-width: 280px; flex: 1 1 200px; }
        }

        @media (max-width: 700px) {
            body { padding: 1rem 0.8rem; }

            .nav-links { display: none; }
            .hamburger { display: flex; }

            .hero {
                flex-direction: column;
                align-items: center;
                gap: 1.8rem;
            }

            .hero-image {
                max-width: 280px;
                flex: 0 0 auto;
                width: 80%;
            }

            .hero-about {
                text-align: left;
                width: 100%;
            }

            .hero-about h1 {
                font-size: 2.2rem;
            }

            .bio-text {
                max-width: 100%;
            }

            .bio-stats {
                gap: 1.2rem 2rem;
            }

            .bio-stats .stat .number {
                font-size: 1.2rem;
            }

            .genres-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 1rem;
            }

            .pub-grid {
                flex-direction: column;
                gap: 1.2rem;
                padding: 1.5rem;
            }

            .pub-item .desc {
                padding-left: 0;
            }

            .subscribe {
                flex-direction: column;
                align-items: stretch;
                padding: 1.8rem 1.2rem;
            }

            .subscribe-form {
                flex-direction: column;
                align-items: stretch;
            }

            .subscribe-form .input-wrap {
                flex: 1 1 auto;
            }

            .subscribe-form button {
                width: 100%;
                justify-content: center;
            }

            .footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.5rem;
            }
        }

        @media (max-width: 420px) {
            .hero-image { width: 90%; max-width: 220px; }
            .hero-about h1 { font-size: 1.9rem; }
            .section-title { font-size: 1.5rem; }
            .genre-card { padding: 1.2rem 1rem; }
            .mobile-menu-overlay a { font-size: 1.6rem; }
        }

        .no-scroll {
            overflow: hidden;
            height: 100vh;
        }
        .publications-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-bottom: 3rem;
    }

    .pub-card {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.8rem 1.8rem;
      padding: 1.2rem 1.5rem;
      background: #ffffff;
      border-radius: 4px;
      border: 1px solid #ece8e2;
      transition: all 0.35s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: cardFade 0.5s ease forwards;
      cursor: default;
    }

    .pub-card:nth-child(1) { animation-delay: 0.05s; }
    .pub-card:nth-child(2) { animation-delay: 0.10s; }
    .pub-card:nth-child(3) { animation-delay: 0.15s; }
    .pub-card:nth-child(4) { animation-delay: 0.20s; }
    .pub-card:nth-child(5) { animation-delay: 0.25s; }
    .pub-card:nth-child(6) { animation-delay: 0.30s; }
    .pub-card:nth-child(7) { animation-delay: 0.35s; }
    .pub-card:nth-child(8) { animation-delay: 0.40s; }

    @keyframes cardFade {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .pub-card:hover {
      border-color: #b9b2a8;
      background: #fefcf9;
      transform: translateX(6px) scale(1.005);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    }

    .pub-card .meta {
      display: flex;
      align-items: baseline;
      gap: 0.8rem;
      flex-wrap: wrap;
      min-width: 140px;
    }

    .pub-card .date {
      font-size: 0.8rem;
      font-weight: 300;
      color: #6b655c;
      letter-spacing: 0.02em;
      min-width: 80px;
    }

    .pub-card .genre-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #6b655c;
      background: #f0ede8;
      padding: 0.15rem 0.7rem;
      border-radius: 12px;
      font-weight: 400;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .pub-card:hover .genre-tag {
      background: #e3ddd5;
      color: #1e1e1e;
    }

    .pub-card .title {
      font-size: 1.15rem;
      font-weight: 400;
      color: #1e1e1e;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.25s ease, color 0.2s ease;
      flex: 1 1 200px;
    }

    .pub-card .title:hover {
      border-bottom-color: #1e1e1e;
      color: #000;
    }

    .pub-card .excerpt {
      width: 100%;
      font-size: 0.92rem;
      font-weight: 300;
      color: #4a4a4a;
      margin-top: 0.2rem;
      padding-left: 0.2rem;
      border-left: 2px solid #e6e2dc;
      padding-left: 0.8rem;
      transition: border-color 0.3s ease;
    }

    .pub-card:hover .excerpt {
      border-left-color: #b9b2a8;
    }
    
    
    
     /* ----- навигационная цепочка (breadcrumb) ----- */
        .breadcrumb {
            font-size: 0.85rem;
            color: #6b655c;
            margin-bottom: 2rem;
            letter-spacing: 0.02em;
            opacity: 0;
            animation: fadeSlide 0.5s ease forwards;
            animation-delay: 0.05s;
        }

        .breadcrumb a {
            color: #2b2b2b;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease;
        }

        .breadcrumb a:hover {
            border-bottom-color: #2b2b2b;
        }

        .breadcrumb span {
            margin: 0 0.4rem;
            color: #b0a89e;
        }

        /* ----- карточка публикации (главный блок) ----- */
        .publication-card {
            background: #ffffff;
            border: 1px solid #e8e2da;
            border-radius: 6px;
            padding: 2.8rem 2.8rem 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
            opacity: 0;
            animation: fadeSlide 0.6s ease forwards;
            animation-delay: 0.1s;
        }

        .publication-card:hover {
            border-color: #cdc4b8;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
        }

        @keyframes fadeSlide {
            0% { opacity: 0; transform: translateY(18px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* ----- мета-информация (жанр, дата, теги) ----- */
        .pub-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem 1.2rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid #f0ebe4;
        }

        .pub-genre {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 500;
            color: #ffffff;
            background: #1e1e1e;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            display: inline-block;
        }

        .pub-date {
            font-size: 0.85rem;
            font-weight: 300;
            color: #6b655c;
        }

        .pub-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin-left: auto;
        }

        .pub-tags .tag {
            font-size: 0.7rem;
            color: #6b655c;
            background: #f3efe9;
            padding: 0.1rem 0.7rem;
            border-radius: 12px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .pub-tags .tag:hover {
            background: #e3ddd5;
            color: #1e1e1e;
        }

        /* ----- заголовок ----- */
        .pub-title {
            font-size: 2.2rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 0.6rem;
            color: #1e1e1e;
        }

        .pub-subtitle {
            font-size: 1.05rem;
            font-weight: 300;
            color: #5a5a5a;
            margin-bottom: 1.8rem;
            border-left: 3px solid #e0dad2;
            padding-left: 1rem;
            transition: border-color 0.3s ease;
        }

        .publication-card:hover .pub-subtitle {
            border-left-color: #b9b2a8;
        }

        /* ----- автор (если нужно) ----- */
        .pub-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.8rem;
            padding: 0.6rem 0 0.6rem 0;
            border-top: 1px solid #f3efe9;
            border-bottom: 1px solid #f3efe9;
        }

        .pub-author .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #dbd7d1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #5a5348;
            font-weight: 300;
            flex-shrink: 0;
        }

        .pub-author .name {
            font-weight: 400;
            font-size: 0.95rem;
        }

        .pub-author .role {
            font-weight: 300;
            font-size: 0.8rem;
            color: #6b655c;
        }

        /* ----- основной текст ----- */
        .pub-body {
            font-weight: 300;
            font-size: 1.05rem;
            color: #2c2c2c;
            margin-bottom: 2.2rem;
        }

        .pub-body p {
            margin-bottom: 1.2rem;
        }

        .pub-body p:last-child {
            margin-bottom: 0;
        }

        .pub-body .quote {
            border-left: 3px solid #d0cbc4;
            padding-left: 1.2rem;
            font-style: italic;
            color: #3f3f3f;
            margin: 1.4rem 0;
            background: #faf8f6;
            padding: 1rem 1.2rem;
            border-radius: 0 4px 4px 0;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .publication-card:hover .quote {
            background: #f5f2ed;
            border-left-color: #b9b2a8;
        }

        /* ----- кнопки взаимодействия (лайк, коммент, поделиться) ----- */
        .pub-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f0ebe4;
            margin-top: 0.5rem;
        }

        .pub-actions .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: transparent;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: #4d4d4d;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .pub-actions .action-btn:hover {
            background: #f0ede8;
            color: #1e1e1e;
            transform: translateY(-1px);
        }

        .pub-actions .action-btn .icon {
            font-size: 1.1rem;
            line-height: 1;
        }

        .pub-actions .action-btn .count {
            font-weight: 300;
            font-size: 0.8rem;
            color: #6b655c;
        }

        .pub-actions .action-btn:hover .count {
            color: #1e1e1e;
        }

        .pub-actions .share-group {
            display: flex;
            gap: 0.4rem;
            margin-left: auto;
        }

        .pub-actions .share-group .action-btn {
            font-size: 0.8rem;
            padding: 0.2rem 0.5rem;
        }

        /* ----- разделитель для демонстрации нескольких карточек ----- */
        .demo-note {
            margin-top: 2.5rem;
            font-size: 0.85rem;
            color: #6b655c;
            text-align: center;
            font-weight: 300;
            border-top: 1px solid #e8e2da;
            padding-top: 2rem;
            opacity: 0;
            animation: fadeSlide 0.5s ease forwards;
            animation-delay: 0.4s;
        }

        .demo-note a {
            color: #2b2b2b;
            text-decoration: none;
            border-bottom: 1px dotted #cbc3b8;
        }

        .demo-note a:hover {
            border-bottom-style: solid;
        }

        /* ----- АДАПТИВНОСТЬ ----- */
        @media (max-width: 700px) {
            body {
                padding: 1rem 0.8rem;
            }

            .publication-card {
                padding: 1.8rem 1.5rem 1.8rem;
            }

            .pub-title {
                font-size: 1.7rem;
            }

            .pub-subtitle {
                font-size: 0.95rem;
                padding-left: 0.8rem;
            }

            .pub-body {
                font-size: 0.98rem;
            }

            .pub-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.4rem;
            }

            .pub-tags {
                margin-left: 0;
            }

            .pub-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 0.6rem;
            }

            .pub-actions .share-group {
                margin-left: 0;
                justify-content: flex-start;
            }

            .pub-author {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 420px) {
            .pub-title {
                font-size: 1.4rem;
            }
            .publication-card {
                padding: 1.2rem 1rem;
            }
            .pub-body .quote {
                padding: 0.8rem 1rem;
                font-size: 0.95rem;
            }
        }
          /* ===== ФИЛЬТРЫ (жанры) ===== */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.2rem;
      margin-bottom: 2.5rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid #e0dad2;
      opacity: 0;
      animation: heroFade 0.6s ease forwards;
      animation-delay: 0.2s;
    }

    .filter-btn {
      background: transparent;
      border: none;
      padding: 0.4rem 0.2rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 400;
      color: #5a5a5a;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s ease, color 0.2s ease, transform 0.2s ease;
      letter-spacing: 0.02em;
    }

    .filter-btn:hover {
      color: #1e1e1e;
      transform: translateY(-1px);
    }

    .filter-btn.active {
      color: #1e1e1e;
      border-bottom-color: #1e1e1e;
      font-weight: 500;
    }
      /* ===== ЗАГОЛОВОК СТРАНИЦЫ ===== */
    .page-header {
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: heroFade 0.7s ease forwards;
      animation-delay: 0.15s;
    }

    @keyframes heroFade {
      0% { opacity: 0; transform: translateY(25px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .page-header h1 {
      font-size: 2.6rem;
      font-weight: 300;
      letter-spacing: -0.02em;
      margin-bottom: 0.3rem;
    }

    .page-header .sub {
      font-weight: 300;
      color: #5a5a5a;
      font-size: 1.05rem;
    }