/* =========================================
   More From [Goalie] Slider Component
   Shared by Pro Reads + Standard Article
   ========================================= */
.ig-more-from-goalie {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}

.ig-more-from-goalie__title {
    font-family: var(--ig-font-heading, 'Inter', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--ig-navy, #0A1628);
    margin: 0 0 20px;
    text-align: center;
}

.ig-more-from-goalie__slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ig-more-from-goalie__slider {
    flex: 1;
    overflow: hidden;
}

.ig-more-from-goalie__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.ig-more-from-goalie__card {
    flex: 0 0 calc((100% - 40px) / 3);
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: var(--ig-radius-md, 8px);
    overflow: hidden;
    box-shadow: var(--ig-shadow-sm, 0 2px 8px rgba(0,0,0,0.08));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ig-more-from-goalie__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ig-shadow-lg, 0 8px 24px rgba(0,0,0,0.12));
}

.ig-more-from-goalie__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.ig-more-from-goalie__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-more-from-goalie__card-title {
    font-family: var(--ig-font-heading, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ig-navy, #0A1628);
    margin: 0;
    padding: 14px;
}

.ig-more-from-goalie__nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--ig-navy, #0A1628);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.ig-more-from-goalie__nav:hover {
    background: var(--ig-accent-blue, #31487A);
}

.ig-more-from-goalie__nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ig-more-from-goalie__see-all {
    display: block;
    text-align: center;
    font-family: var(--ig-font-ui, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--ig-accent-blue, #31487A);
    text-decoration: none;
}

.ig-more-from-goalie__see-all:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ig-more-from-goalie__card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 500px) {
    .ig-more-from-goalie__slider-wrap {
        gap: 8px;
    }

    .ig-more-from-goalie__nav {
        width: 32px;
        height: 32px;
    }

    .ig-more-from-goalie__nav svg {
        width: 18px;
        height: 18px;
    }

    .ig-more-from-goalie__card {
        flex: 0 0 100%;
    }

    .ig-more-from-goalie__card-title {
        font-size: 13px;
        padding: 12px;
    }
}
