/* Title styles - handwritten */
.title-main {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    color: var(--color-text);
}

.title-main:hover {
    color: var(--color-text);
}

/* Curvy underline effect */
.title-underline {
    position: absolute;
    bottom: -0.1em;
    left: 0;
    width: 100%;
    height: 0.4em;
    background-image: url('/static/images/underline.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.7;
}

[data-theme="dark"] .title-underline {
    filter: invert(1);
    opacity: 0.5;
}

/* Body text - retro typewriter */
.text-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
}

/* Post titles in list */
.post-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: normal;
    letter-spacing: 0.01em;
    margin: 0;
}

.post-title a {
    color: var(--color-text);
}

.post-title a:hover {
    color: var(--color-accent-hover);
}

/* Muted text */
.text-muted {
    color: var(--color-text-muted);
}

.text-subtle {
    color: var(--color-text-subtle);
    font-size: 0.875rem;
}

/* Section titles */
.section-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-subtle);
    margin-bottom: var(--spacing-md);
}
