
/* Widget base styles */
.widget {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid;
    margin-bottom: 10px;
    font-size: 13px;
    transition: all 0.2s;
}

.widget-label {
    font-weight: 600;
    flex-shrink: 0;
}

.widget-text {
    line-height: 1.5;
    flex: 1;
}

/* Article styles */
article {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
}

article header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

article h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

article time {
    font-size: 13px;
    color: var(--text-light);
}

article .subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

article main {
    margin-bottom: 30px;
    line-height: 1.8;
}

article main p {
    margin-bottom: 15px;
}

article footer a {
    color: var(--accent);
    text-decoration: none;
}

article footer a:hover {
    text-decoration: underline;
}
