.eth-6e981049-wrapper {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    text-align: center;
}

.eth-6e981049-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.eth-6e981049-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.eth-6e981049-tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.eth-6e981049-tab-pane {
    display: none;
}

.eth-6e981049-tab-pane.active {
    display: block;
}

.eth-6e981049-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.eth-6e981049-grid-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.eth-6e981049-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.eth-6e981049-grid-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .eth-6e981049-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .eth-6e981049-grid {
        grid-template-columns: 1fr;
    }
}
