﻿/* --- Typography tool --- */

.tool-page {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.tool-header {
    margin-bottom: 1.5rem;
}

.tool-layout {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 1.5rem;
}

.responsive-stack {
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
    .responsive-stack {
        grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    }
}

.tool-section {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.25rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.tool-section-title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tool-subtitle {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-row {
    margin-bottom: 0.8rem;
}

.form-row-inline {
    display: flex;
    gap: 0.8rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.form-label-small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.form-input {
    width: 100%;
    max-width: 100%;
    padding: 0.35rem 0.5rem;
    border-radius: 0.3rem;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.form-input-sm {
    padding: 0.25rem 0.4rem;
    font-size: 0.85rem;
}

.form-help {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.typo-preview-panel {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #eee;
    overflow: hidden;
}

.typo-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #f7f7f7;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

.typo-preview {
    padding: 0.9rem 0.9rem 1rem;
    background: #fafafa;
}

    .typo-preview[data-theme="dark"] {
        background: #101010;
        color: #f3f3f3;
    }

.typo-preview-row + .typo-preview-row {
    margin-top: 0.75rem;
}

.typo-preview-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.1rem;
}

.typo-preview-text {
    font-weight: 400;
}

.typo-table code {
    font-size: 0.8rem;
}

.code-block {
    width: 100%;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 0.35rem;
    border: 1px solid #ddd;
    background: #fdfdfd;
}

.export-block {
    margin-bottom: 0.75rem;
}

    .export-block .btn {
        margin-bottom: 0.3rem;
    }
