/* Mini Page Header Styles */
.mini-header {
    height: 40vh;
    min-height: 300px;
    max-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0b1c3d;
}

.mini-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.mini-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.mini-header-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.mini-header-subtitle {
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 0;
    opacity: 0.9;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.mini-header-title span.line-wrapper {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.mini-header-title .line-inner {
    display: block;
}