/* =============================================
   Landing Page Custom CSS - Alam Media Data
   File ini dipisah dari Blade agar tidak
   konflik dengan Blade parser (@media, dll)
   ============================================= */

.separator1 {
    display: block;
    height: 0;
    border-bottom: 2px solid #eff2f5;
    border-bottom-style: dashed;
    border-bottom-color: #e4e6ef;
}

/* === Partner Slider === */
#partner-slider .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}
#partner-slider img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}
#partner-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
#partner-slider {
    padding: 20px 0;
}

/* === Typeahead Search === */
.twitter-typeahead {
    width: 100%;
    position: relative;
}
.tt-menu {
    width: 100%;
    margin-top: 5px;
    background-color: #fff;
    border: 1px solid #E4E6EF;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    border-radius: 1rem !important;
}
.tt-suggestion {
    display: block;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    color: #181C32;
}
.tt-suggestion.tt-cursor,
.tt-suggestion:hover {
    color: #FFFFFF;
    background-color: #d8d8d8;
}

/* === Gallery Grid (Masonry) === */
.gallery-grid {
    margin: 0 auto;
}
.grid-sizer {
    width: 16.666%;
}
.grid-item {
    width: 16.666%;
    padding: 8px;
    box-sizing: border-box;
}
.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* === Responsive Gallery === */
@media (max-width: 991px) {
    .grid-sizer,
    .grid-item {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .grid-sizer,
    .grid-item {
        width: 100%;
    }
}
