.paths-and-pages-teasers {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.paths-and-pages-teasers-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.paths-and-pages-category-card {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 14px;
}

.paths-and-pages-category-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    flex: 1 1 auto;
}

.paths-and-pages-category-title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.paths-and-pages-category-text {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    padding: 0;
    opacity: 0.9;
}

.paths-and-pages-category-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: max-content;
}

.paths-and-pages-category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(0, 0, 0, 0.03);
    color: inherit;
    white-space: nowrap;
}

.paths-and-pages-category-button:hover {
    background: rgba(0, 0, 0, 0.06);
}

.paths-and-pages-teasers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    align-items: stretch;
}

.paths-and-pages-teaser-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 14px;
    min-height: 220px;
}

.paths-and-pages-teaser-title {
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

.paths-and-pages-teaser-text {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    padding: 0;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.paths-and-pages-teaser-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 2px;
}

.paths-and-pages-teaser-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(0, 0, 0, 0.03);
    color: inherit;
    white-space: nowrap;
}

.paths-and-pages-teaser-button:hover {
    background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 720px) {
    .paths-and-pages-category-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .paths-and-pages-category-actions {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        min-width: 0;
    }
}
