body {
    background: var(--mono-light);
    color: var(--mono-dark);
    font-family: var(--font-sans, 'Segoe UI', Arial, sans-serif);
    margin: 0;
    padding: 2.5rem 1rem 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.holding-content {
    background: rgba(255, 255, 255, 0.95); /* светлый почти непрозрачный фон */
    padding: 2.5rem 3rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15); /* выразительная тень */
    max-width: 960px;
    width: 90vw;
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}


.holding-content img.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    order: 0; /* картинка слева */
}

.holding-text {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    order: 1; /* текст справа */
}

.country-flag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif, 'Cinzel', serif);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--mono-dark);
}

.country-flag img.flag-icon {
    width: 36px;
    height: 26px;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    object-fit: cover;
}

.holding-text h3 {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--mono-dark);
    font-weight: 400;
}

.holding-text h3 a {
    color: var(--mono-dark);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.holding-text h3 a:hover,
.holding-text h3 a:focus {
    color: rgba(122, 0, 0, 0.85);
    text-decoration: none;
}

img.logo {
    /* Попытка сделать белый фон прозрачным с помощью CSS */
    background-color: transparent;
    mix-blend-mode: multiply; /* Умножает изображение с фоном, белое исчезает */
}


@media (max-width: 760px) {
    .holding-content {
        flex-direction: column;
        gap: 1.8rem;
        justify-content: center;
    }
    .holding-text {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    .country-flag {
        justify-content: center;
    }
}
