/*MINETOIPEX MC STUDIO*/
.main__index__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main__index__section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b4332;
}

.main__index__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .main__index__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main__index__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.main__index__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInUp 0.8s ease backwards;
}

.main__index__card:nth-child(1) { animation-delay: 0.1s; }
.main__index__card:nth-child(2) { animation-delay: 0.2s; }
.main__index__card:nth-child(3) { animation-delay: 0.3s; }
.main__index__card:nth-child(n+4) { animation-delay: 0.4s; }

.main__index__card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.15);
}

.main__index__image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.main__index__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.main__index__card:hover .main__index__img {
    transform: scale(1.1);
}

.main__index__tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: linear-gradient(135deg, #b7e4c7 0%, #74c69d 100%);
    color: #1b4332;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(116, 198, 157, 0.3);
}

.main__index__content {
    padding: 1.8rem;
}

.main__index__card-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d6a4f;
    transition: color 0.3s ease;
}

.main__index__card:hover .main__index__card-title {
    color: #40916c;
}

.main__index__description {
    font-size: 0.95rem;
    color: #52796f;
    line-height: 1.6;
    margin: 0;
}
