/**
 * Emblem Component Styles
 * 
 * Styles for the Emblem component used across all pages.
 * Ensures consistent sizing and appearance of the M & K monogram.
 */

.emblem {
    margin: 0 auto var(--space-md);
    width: 73px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emblem svg {
    width: 100%;
    height: 100%;
}

.svg-text {
    font-family: var(--font-script);
    font-size: 16px;
    font-weight: 400;
    fill: var(--brand-rose);
    text-anchor: middle;
    dominant-baseline: middle;
}

/* Responsive sizing */
@media (max-width: 600px) {
    .emblem {
        width: 70px;
        height: 70px;
    }
}
