.link-log {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-log li {
    border-bottom: 1px dashed #8b7d6b;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
}

.link-log li:last-child {
    border-bottom: none;
}

.log-date {
    font-family: 'Courier New', monospace;
    color: #b58900;
    font-size: 0.85em;
    margin-bottom: 5px;
    font-weight: bold;
}

.log-title {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--link);
    text-decoration: underline;
}

.log-desc {
    font-size: 0.9em;
    color: #555;
    margin-top: 3px;
}

.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #362b23;
    padding-bottom: 15px;
}

.header-wolf {
    padding: 10px;
    border-radius: 5px;
}

.back-button {
    display: inline-block;
    background: var(--link);
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.back-button:hover {
    color: var(--bg-texture);
}