section.teasers {
    width: 90%;
    margin: 110px auto 0;
}

article.post-teaser .post-title>a {
    color: #333;
}

article.post-teaser .post-meta, article.post .post-meta {
    font-size: 11px;
}
article.post .post-meta {
    text-align: center;
}

ul.post-tags {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 12px;

    flex-wrap: wrap;
    align-items: flex-start;
}

ul.post-tags li {
    background: #f0f0f0;
    padding: 0 4px;
    border-radius: 4px;
}

ul.post-tags li>a, ul.post-tags li>a:hover, ul.post-tags li>a:visited {
    color: #bd6a28;
}

.post-excerpt, .post-text {
    color: black;
}

.post-teaser {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Пунктирная линия */
.post-teaser:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
            to right,
            rgba(0, 0, 0, 0.3) 0,
            rgba(0, 0, 0, 0.3) 5px,
            transparent 5px,
            transparent 12px
    );
}

.blog h2 {
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5%;
    box-sizing: border-box;
    font-size: clamp(20px, 4vw, 42px);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

article.post .post-meta>time {
    font-size: 16px;
}
article.post .post-meta {
    margin-top: 25px;
}
article.post .post-text {
    padding: 0 15%;
    text-align: justify;
}
article.post footer {
    padding: 0 15%;
    margin-top: 60px;
}


article.category-description .post-text {
    text-align: justify;
    margin: 30px 15%;
    padding: 30px 50px;
    background: #d6dee6;
    border-radius: 15px;
}

article.category-description footer {
    padding: 0 15%;
    margin-top: 60px;
}
.post-meta .separator {
    margin: 0 0.5rem;
    color: #ccc;
}

.post-text {
    margin-top: 115px;
}

.post-header {
    width: 100%;
}

.hori-separator {
    position: relative;
    margin: 30px 0;
}

.hori-separator::after {
    content: "";
    display: block;
    width: 250px;
    height: 2px;
    background: #8B4513;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.article-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 15px;
}

.article-category {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 10px;
    transition: color 0.3s ease;
    font-family: sans-serif;
}

.article-category:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: #000;
}

.article-category:last-child {
    padding-right: 0;
}

.article-category:hover {
    color: #e74c3c;
}

@media (max-width: 480px) {
    .article-categories {
        flex-direction: column;
        gap: 10px;
    }

    .article-category:not(:last-child)::after {
        display: none;
    }

    .article-category {
        padding: 5px 0;
    }
}

.article-sheet-music {
    margin-top: 115px;
}

.article-sheet-music h3 {
    text-align: center;
    margin-bottom: 60px;
}

.music-list {
    list-style: none;
    padding: 30px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    background: #dbd81dc4;
    border-radius: 30px;
    margin-top: 50px;
    box-shadow: inset 2px 2px 26px 4px #DDDCD9;
}

.music-list li {
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    /*border-bottom: 1px dashed #eee;*/
}

.music-list li::before {
    content: "♪";
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #885050;
}

.post-content .artist-pic-container {
    text-align: center;
    margin-top: 35px;
}

.post-content .artist-pic-container > img {
    width: 250px;
    margin-bottom: -40px;
}

.post-thumbnail {
    flex: 0 0 auto;
    max-width: 200px;
}

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

.subhead {
    text-align: justify;
    margin: 30px 15%;
    padding: 30px 50px;
}

.category-description  h3
{
    text-align: center;
    margin-bottom: 50px;
}

.category-description .post-text h3
{
    margin: 0 0 50px;
}

.post-text h3 {
    font-size: 32px;
    line-height: 32px;
    margin: 80px 0 30px 0;
    color: #604e3d;
}

@media (max-width: 480px) {
    .teasers {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem;
        justify-content: center;
    }

    .post-teaser {
        width: 320px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .post-teaser:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .post-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .post-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .post-title a {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        text-decoration: none;
    }

    .post-title a:hover {
        text-decoration: underline;
    }

    .post-meta {
        font-size: 0.85rem;
        color: #888;
    }

    .separator {
        margin: 0 0.3em;
        color: #ccc;
    }

    .read-time {
        color: #555;
    }

    .post-excerpt p {
        font-size: 0.95rem;
        color: #333;
        line-height: 1.4;
    }

    .post-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4em;
        margin-top: 0.5rem;
        padding: 0;
        list-style: none;
    }

    .post-tags li a {
        font-size: 0.75rem;
        background: #f1f1f1;
        color: #333;
        padding: 0.3em 0.6em;
        border-radius: 5px;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .post-tags li a:hover {
        background: #dcdcdc;
    }

    .post-thumbnail {
        width: 100%;
        overflow: hidden;
        max-width: none;
    }

    .subhead {
        padding: 0;
    }
    article.category-description .post-text {
        margin: 0;
    }
    article.post .post-text {
        padding: 0;
    }
}