.venture-gallery-container {
    width: 100%;
    /*max-width: 1200px;*/
}

/* --- Carousel Structure --- */
.venture-carousel-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    position: relative;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}
/* Only show grab cursor if scrollable (handled by JS class or default) */
.venture-carousel-viewport.is-locked { cursor: default; }
.venture-carousel-viewport:not(.is-locked):active { cursor: grabbing; }

.venture-carousel-track {
    display: flex;
    will-change: transform;
    height: 100%;
}

.venture-carousel-item {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0 10px;
    position: relative;
}

/* --- Image Styling --- */
.venture-image-wrapper {
    width: 100%;
    aspect-ratio: 2 / 3;
    background-color: #f0f0f0;
    overflow: hidden;
    pointer-events: none;
}

.venture-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Stepper Styling --- */
.venture-stepper-container {
    width: 100%;
    height: 2px;
    background-color: #000;
    margin-top: 40px;
    position: relative;
    transition: opacity 0.3s ease; /* Fade out if disabled */
}

.venture-stepper-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #FFF;
    width: 0%;
    transition: width 0.3s ease-out;
}

.venture-profile-card {
    position: relative;
    cursor: pointer;
}

.venture-profile-card-trainer {
    /* Aspect ratio for portrait images */
    aspect-ratio: 407/568;
}

.venture-profile-card-kids {
    /* Aspect ratio for portrait images */
    aspect-ratio: 683/1024;
}


/* Image Styling */
.venture-profile-card-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay Styling */
.venture-profile-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Dark overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    text-align: left;
    color: white;
}

/* Hover: Show Overlay */
.venture-profile-card:hover .venture-profile-card-overlay {
    opacity: 1;
}

/* Instagram Icon Styling */
.venture-profile-card-instagram-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.1s; /* Slight delay for effect */
    color: white;
    z-index: 10;
}

.venture-profile-card-instagram-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.venture-profile-card-instagram-icon:hover {
    color: #E1306C; /* Instagram brand color on direct hover */
}

/* Hover: Show Icon */
.venture-profile-card:hover .venture-profile-card-instagram-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Content Text Animation */
.venture-profile-card-info-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
}

.venture-profile-card:hover .venture-profile-card-info-content {
    transform: translateY(0);
}

/* Typography within card */
.venture-profile-card-info-item {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.venture-profile-card-label {
    font-weight: 400;
    margin-right: 30px;
    display: inline-block;
    font-size:15px;
    font-family: "Public Sans";
}

.venture-profile-card-value {
    font-weight: 300;
    color: #f9fafb;
}