.elementor-3919 .elementor-element.elementor-element-0f6e029 > .elementor-container{min-height:100vh;}.elementor-3919 .elementor-element.elementor-element-0f6e029:not(.elementor-motion-effects-element-type-background), .elementor-3919 .elementor-element.elementor-element-0f6e029 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#9AA3A5;}.elementor-3919 .elementor-element.elementor-element-0f6e029{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-3919 .elementor-element.elementor-element-0f6e029 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}@media(max-width:767px){.elementor-3919 .elementor-element.elementor-element-0f6e029 > .elementor-container{min-height:100vh;}}/* Start custom CSS for html, class: .elementor-element-bd503b6 *//* ===============================
   THEME (use only your colors)
   =============================== */
:root{
  --primary1: #2ab2d7; /* cyan */
  --primary2: #2d4045; /* deep slate */
  --primary3: #e7e7e7; /* light gray */
}

/* ==================================================
   IMMERSIVE JOURNALISM - INTERACTIVE HOVER EFFECTS
   ================================================== */
   
.elementor-kit-5 h2 {
    color: #ffffff;}
    
    a.story-cta {
    color: white;
}

/* Container for the sections */
.immersive-container {
    display: flex;
    flex-wrap: wrap;
    /* keeps children from stretching to container height */
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

/* Individual story containers (now 3:4) */
.story-container {
    /* aspect ratio for box + background */
    aspect-ratio: 4 / 3;
    /* control width; height auto follows from aspect-ratio */
    flex: 1 1 360px;    /* grows, shrinks, prefers ~360px */
    max-width: 640px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 18px;
    background: var(--primary2);
    box-shadow: 0 12px 30px rgba(45, 64, 69, 0.25); /* primary2 with alpha */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Background images */
.story-container .story-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-in-out, filter 0.8s ease-in-out;
    transform: scale(1);
}

/* Overlay effects (use only brand colors w/ alpha) */
.story-container .story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(45, 64, 69, 0.45),   /* primary2 @ 45% */
        rgba(42, 178, 215, 0.25)  /* primary1 @ 25% */
    );
    transition: all 0.5s ease;
    z-index: 2;
}

/* Content wrapper */
.story-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 32px;
    text-align: center;
}

/* Title styling */
.story-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary3);
    text-shadow: 0 2px 20px rgba(45, 64, 69, 0.6);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Subtitle/description */
.story-subtitle {
    font-size: 1.1rem;
    color: rgba(231, 231, 231, 0.9); /* primary3 w/ alpha */
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
    max-width: 520px;
    line-height: 1.6;
}

/* Call-to-action button */
.story-cta {
    /*background: linear-gradient(45deg, var(--primary1), var(--primary2));*/
    /*color: var(--primary3);*/
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
    box-shadow: 0 10px 30px rgba(42, 178, 215, 0.25); /* primary1 w/ alpha */
}

/* Icon styling */
.story-icon {
    font-size: 3.6rem;
    color: var(--primary3);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(30px) rotate(-10deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
    text-shadow: 0 2px 20px rgba(45, 64, 69, 0.6);
}

/* HOVER EFFECTS */
.story-container:hover {
    transform: translateY(-4px) scale(1.02);
}

.story-container:hover .story-bg {
    transform: scale(1.08);
    filter: brightness(1.06) contrast(1.06);
}

.story-container:hover .story-overlay {
    background: linear-gradient(
        45deg,
        rgba(42, 178, 215, 0.30),  /* primary1 */
        rgba(45, 64, 69, 0.15)     /* primary2 */
    );
}

.story-container:hover .story-title,
.story-container:hover .story-subtitle,
.story-container:hover .story-cta,
.story-container:hover .story-icon {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
}

.story-container:hover .story-cta {
    background: linear-gradient(45deg, var(--primary1), var(--primary2));
    box-shadow: 0 16px 42px rgba(42, 178, 215, 0.35);
    transform: translateY(0) scale(1.05);
}

/* Non-hovered container effects */
.immersive-container:hover .story-container:not(:hover) {
    filter: grayscale(0.15) brightness(0.9);
    opacity: 0.95;
}

/* Variant classes now also respect brand colors */
.interactive-stories {
    background: linear-gradient(135deg, var(--primary2), var(--primary1));
}
.interactive-stories .story-overlay {
    background: linear-gradient(135deg, rgba(45,64,69,0.35), rgba(42,178,215,0.25));
}
.interactive-stories .story-cta {
    background: linear-gradient(45deg, var(--primary1), var(--primary2));
    box-shadow: 0 10px 30px rgba(42,178,215,0.25);
}

.vr-stories {
    background: linear-gradient(135deg, var(--primary2), var(--primary1));
}
.vr-stories .story-overlay {
    background: linear-gradient(135deg, rgba(45,64,69,0.35), rgba(42,178,215,0.25));
}
.vr-stories .story-cta {
    background: linear-gradient(45deg, var(--primary1), var(--primary2));
    box-shadow: 0 10px 30px rgba(42,178,215,0.25);
}

/* Floating particles animation (tinted with brand colors) */
.story-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 80%, rgba(42,178,215,0.12) 2px, transparent 2px),
      radial-gradient(circle at 80% 20%, rgba(231,231,231,0.12) 2px, transparent 2px),
      radial-gradient(circle at 40% 40%, rgba(45,64,69,0.08) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    animation: floatParticles 20s linear infinite;
}

.story-container:hover::before { opacity: 1; }

@keyframes floatParticles {
    0%   { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

/* Pulse animation for icons */
@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0); }
    50%      { transform: scale(1.1) rotate(5deg); }
}
.story-container:hover .story-icon { animation: pulse 2s ease-in-out infinite; }

/* Responsive Design */
@media (max-width: 1024px){
    .story-title { font-size: 2.6rem; }
}
@media (max-width: 768px) {
    .immersive-container {
        flex-direction: column;
        align-items: stretch;
        margin-top: -20px;
    }
    .story-container {
        aspect-ratio: 1 / 1;
        flex: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        /* aspect ratio keeps 3:4 while width is 100% */
    }
    .story-content { padding: 24px; }
    .story-title   { font-size: 2.2rem; }
    .story-subtitle{ font-size: 1rem; }
}
@media (max-width: 480px) {
    .story-title { font-size: 1.8rem; letter-spacing: 1px; }
    .story-subtitle { font-size: 0.95rem; }
    .story-icon { font-size: 3rem; }
}

/* Custom scrollbar (brand only) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary2); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary1), var(--primary2));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary1), var(--primary2));
}


  .story-content {
    padding: clamp(12px, 4vw, 20px);
  }

  .story-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 10px;
  }

  .story-subtitle {
    font-size: clamp(0.9rem, 3.6vw, 1rem);
    line-height: 1.45;
    max-width: 92%;
    margin-inline: auto;

    /* prevent text from pushing past the 4:3 box */
    display: -webkit-box;
    -webkit-line-clamp: 3;       /* show up to 3 lines; tweak as needed */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .story-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
    transform: none;             /* avoid extra height from hover scaling */
    box-shadow: 0 8px 24px rgba(42, 178, 215, 0.25);
  }

  .story-icon {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

/* Tiny phones: reduce a bit more so everything sits comfortably in 4:3 */
@media (max-width: 420px) {
  .story-title { font-size: clamp(1.3rem, 6.5vw, 1.7rem); }
  .story-subtitle { -webkit-line-clamp: 2; }
}

/* Optional: disable hover "lift" on touch devices (prevents jarring jumps) */
@media (hover: none) {
  .story-container:hover { transform: none; }
}

/* Custom scrollbar (brand only) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary2); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary1), var(--primary2));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary1), var(--primary2));
}/* End custom CSS */