/* Interactive Gallery - 3c8a73d3 */

.ig-3c8a-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.ig-3c8a-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 250px !important;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}

/* Background Image */
.ig-3c8a-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay */
.ig-3c8a-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    transition: background-color 400ms ease, background 400ms ease;
}

/* Content */
.ig-3c8a-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    height: 100%;
    flex: 1;
}

/* Info Block */
.ig-3c8a-info {
    transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Caption */
.ig-3c8a-caption {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ig-3c8a-caption-icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

.ig-3c8a-caption-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* Title */
.ig-3c8a-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

/* Description */
.ig-3c8a-description {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* CTA */
.ig-3c8a-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity 400ms ease 50ms, transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 50ms, max-height 400ms ease;
}

.ig-3c8a-item:hover .ig-3c8a-cta,
.ig-3c8a-item.ig-3c8a-hovered .ig-3c8a-cta {
    opacity: 1;
    max-height: 80px;
    transform: translateY(0);
}

.ig-3c8a-cta-text {
    flex: 1;
}

.ig-3c8a-cta-icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    transition: transform 300ms ease;
	padding-right: 5px;
}

.ig-3c8a-cta-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.ig-3c8a-item:hover .ig-3c8a-cta-icon,
.ig-3c8a-item.ig-3c8a-hovered .ig-3c8a-cta-icon {
    transform: translateX(4px);
}

/* Hover Effects */
.ig-3c8a-item:hover .ig-3c8a-bg,
.ig-3c8a-item.ig-3c8a-hovered .ig-3c8a-bg {
    transform: scale(1.1);
}

.ig-3c8a-item:hover .ig-3c8a-overlay,
.ig-3c8a-item.ig-3c8a-hovered .ig-3c8a-overlay {
    background-color: rgba(0,0,0,0.65);
}

.ig-3c8a-item:hover .ig-3c8a-info,
.ig-3c8a-item.ig-3c8a-hovered .ig-3c8a-info {
    transform: translateY(-10px);
}
/* Mobile: CTA always visible (no hover on touch devices) */
@media (max-width: 767px) {
	.ig-3c8a-cta {
		opacity: 1;
		transform: translateY(0);
		max-height: none;
		overflow: visible;
	}

	.ig-3c8a-info {
		transform: translateY(-10px);
	}

	.ig-3c8a-overlay {
		background-color: rgba(0, 0, 0, 0.55);
	}
}