/**
 * Modify Site Logo — Frontend Styles
 * v1.0.0
 */

/* ── Container ────────────────────────────────── */
.msl-wrap {
    display: flex;
    width: 100%;
    line-height: 1;
    /* justify-content and align-items controlled by Elementor */
}

.msl-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.msl-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Image ────────────────────────────────────── */
.msl-img {
    display: block;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* ── Text ─────────────────────────────────────── */
.msl-text-wrap {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.msl-text {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.msl-tagline {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* ── Print ────────────────────────────────────── */
@media print {
    .msl-link { color: #000 !important; }
    .msl-text { color: #000 !important; }
    .msl-tagline { color: #666 !important; }
}
