/* Stili per il contenuto dei post singoli */
.entry-header {
    margin-bottom: 20px;
    text-align: center;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(
        to bottom,
        var(--aynix-primary-color),
        var(--aynix-secondary-color),
        var(--aynix-ternary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.entry-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.entry-content {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.entry-content a {
    color: #f89b29;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.entry-content a:hover {
    color: #ff0f7b;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    background: none;
}

.post-categories a,
.post-tags a {
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(
        to bottom,
        var(--aynix-primary-color),
        var(--aynix-secondary-color),
        var(--aynix-ternary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comments-section {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.entry-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
