





/* ===================================================
   INSTAGRAM NATIVE SHOWCASE & 1S SLIDER
   =================================================== */
.mab-ig-native-section {
    max-width: 1200px;
    margin: 40px auto 35px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
    padding: 0 15px;
}

.mab-ig-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #f1f5f9;
}

.mab-ig-header-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mab-ig-logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.25);
    flex-shrink: 0;
}

.mab-ig-main-heading {
    margin: 0 0 3px 0;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.mab-ig-sub-heading {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.mab-ig-follow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.2s ease;
}

.mab-ig-follow-pill:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 6px 18px rgba(214, 36, 159, 0.35);
    transform: translateY(-2px);
}

.mab-ig-slider-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 8px 0;
}

.mab-ig-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* 3 Tarjetas en Computadora */
.mab-ig-slide-box {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    box-sizing: border-box;
}

.mab-ig-post-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mab-ig-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mab-ig-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.mab-ig-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mab-ig-card-username {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.mab-ig-card-icon-right {
    margin-left: auto;
    color: #E1306C;
}

.mab-ig-card-media {
    position: relative;
    width: 100%;
    height: 280px;
    background: #0f172a;
    overflow: hidden;
}

.mab-ig-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.4s ease;
}

.mab-ig-card-hover-link {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    text-decoration: none !important;
}

.mab-ig-card-media:hover .mab-ig-card-hover-link {
    opacity: 1;
}

.mab-ig-card-media:hover .mab-ig-post-image {
    transform: scale(1.06);
}

.mab-ig-hover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a !important;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mab-ig-card-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.mab-ig-card-actions {
    display: flex;
    gap: 12px;
}

.mab-ig-view-post-text {
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none !important;
}

.mab-ig-view-post-text:hover {
    text-decoration: underline !important;
}

/* 1 Tarjeta en Celulares */
@media (max-width: 768px) {
    .mab-ig-slide-box {
        flex: 0 0 100%;
    }
    .mab-ig-card-media {
        height: 320px;
    }
    .mab-ig-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .mab-ig-follow-pill {
        width: 100%;
        justify-content: center;
    }
}
