/*
Theme Name: Twenty Twenty-Five Child
Theme URI:  https://example.com/
Description: Child theme of Twenty Twenty-Five -- shows post tags under posts on the main blog page.
Author:      Your Name
Author URI:  https://example.com/
Template:    twentytwentyfive
Version:     1.0.0
Text Domain: twentytwentyfive-child
*/

/* Basic child theme styling (keeps parent look but allows overrides) */
@import url("../twentytwentyfive/style.css");

/* Tag list styling shown under posts on the main page */
.entry-tags {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: inherit;
}

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

.post-tags li {
    background: rgba(0,0,0,0.06);
    color: inherit;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

/* Ensure post tag links inherit text color and have subtle hover */
.post-tags a {
    color: inherit;
    text-decoration: none;
}
.post-tags a:hover {
    text-decoration: underline;
}
