.artiblog-article {
width: var(--container-width);
}

.artiblog-meta {
width: 100%;
    margin-bottom: 2rem;
text-align: center;
}

.artiblog-info {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 0.5rem 3rem;
color: var(--text-muted);
}

.artiblog-rightbox {
float: right;
width: 40%;
display: flex;
flex-direction: column;
gap: 1rem;
margin: 0 0 1.5rem 2rem;
}

.artiblog-rightbox img,
.artiblog-rightbox audio,
.artiblog-rightbox video {
    display: block;
    width: 100%;
    height: auto;
}

.artiblog-footer {
width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.artiblog-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.artiblog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.artiblog-navigation a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 40%;
    color: var(--primary);
    text-decoration: none;
}

.artiblog-navigation a:hover {
    color: var(--primary-hover);
}

.artiblog-navigation a:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.artiblog-navigation a span {
    display: block;
}

.artiblog-navigation a span:first-child {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.artiblog-navigation a span:last-child {
    font-weight: 600;
}

.artiblog-navigation .artiblog-next {
    text-align: right;
    margin-left: auto;
}

.artiblog-related {
width: 100%;
height: auto;
}

.artiblog-related h2 {
margin: 0 0 1.5rem;
font-size: 1.3rem;
font-weight: 600;
color: var(--text);
text-align: left;
}

.artiblog-related ul {
width: 100%; /* Garantisce che ul occupi tutto lo spazio del padre */
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin: 0;
padding: 0;
list-style: none;
}

.artiblog-related li a {
color: var(--text);
text-decoration: none;
}

.artiblog-related li a:hover {
color: var(--primary);
}

.artiblog-related li a:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 4px;
}
