/**
 * Showcase Block - Frontend Styles
 * Matches VIPBC theme styling
 */

.showcase-block-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.showcase-block-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0;
    overflow: hidden;
}

.showcase-column {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.showcase-column-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: inherit;
}

.showcase-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.showcase-column-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 2rem 1.5rem;
}

.showcase-title-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.showcase-title-text {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .showcase-block-container {
        flex-wrap: wrap;
    }

    .showcase-column {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .showcase-column {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .showcase-column-title-overlay {
        padding: 1.5rem 1rem;
    }

    .showcase-title-text {
        font-size: 1rem;
    }
}

/* Wide and Full Width Support */
.showcase-block-wrapper.alignwide,
.showcase-block-wrapper.alignfull {
    max-width: 100%;
}

