.image-collage-section {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #111 0%, #500000 100%);
}

.image-collage-section-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 2rem 4rem;
    box-sizing: border-box;
}

.image-collage-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.image-collage-section-title {
    margin: 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.image-collage-section-description {
    margin: 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
}

.image-collage-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    gap: 1rem;
}

.collage-tile {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.image-collage-layout .collage-tile:first-child {
    grid-row: span 2;
    min-height: 580px;
}

.collage-tile-image,
.collage-tile-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.collage-tile-placeholder {
    display: grid;
    place-items: center;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 0, 0, 0.2));
}

.collage-tile-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    color: #fff;
}

.collage-tile-title {
    margin: 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 700;
}

.collage-tile-text {
    margin: 0.35rem 0 0 0;
    font-family: var(--font-family, 'DM Sans', sans-serif);
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.84);
}

@media (min-width: 1200px) {
    .image-collage-section-inner {
        padding: 3rem 4rem;
    }

    .image-collage-section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1199px) {
    .image-collage-section-inner {
        padding: 2rem 2rem;
    }

    .image-collage-layout {
        grid-template-columns: 1fr 1fr;
    }

    .image-collage-layout .collage-tile:first-child {
        grid-row: span 1;
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .image-collage-section-inner {
        padding: 1.5rem 1rem;
    }

    .image-collage-section-title {
        font-size: 1.5rem;
    }

    .image-collage-section-description {
        font-size: 0.92rem;
    }

    .image-collage-layout {
        grid-template-columns: 1fr;
    }

    .collage-tile,
    .image-collage-layout .collage-tile:first-child {
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    .collage-tile-overlay {
        padding: 0.85rem;
    }

    .collage-tile-title {
        font-size: 0.98rem;
    }

    .collage-tile-text {
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .collage-tile {
        transition: none !important;
    }
}