.direto-ig-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
}

.direto-ig-grid {
    display: grid;
    gap: 20px;
}

/* Columns */
.direto-ig-cols-1 { grid-template-columns: repeat(1, 1fr); }
.direto-ig-cols-2 { grid-template-columns: repeat(2, 1fr); }
.direto-ig-cols-3 { grid-template-columns: repeat(3, 1fr); }
.direto-ig-cols-4 { grid-template-columns: repeat(4, 1fr); }
.direto-ig-cols-5 { grid-template-columns: repeat(5, 1fr); }
.direto-ig-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 992px) {
    .direto-ig-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .direto-ig-grid { grid-template-columns: repeat(1, 1fr); }
}

/* Card Styling */
.direto-ig-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    position: relative;
    height: 100%;
}

.direto-ig-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.direto-ig-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-grow: 1;
}

.direto-ig-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Icons for video/carousel */
.direto-ig-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direto-ig-icon svg {
    width: 16px;
    height: 16px;
}

/* Footer Styling */
.direto-ig-footer {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #fff;
    min-height: 60px;
}

.direto-ig-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #fff;
    object-fit: cover;
    flex-shrink: 0;
}

.direto-ig-username {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.direto-ig-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.direto-ig-carousel::-webkit-scrollbar {
    height: 6px;
}

.direto-ig-carousel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.direto-ig-carousel .direto-ig-card {
    scroll-snap-align: start;
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
}

@media (max-width: 992px) {
    .direto-ig-carousel .direto-ig-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .direto-ig-carousel .direto-ig-card {
        flex: 0 0 85%;
    }
}
