.gpu-container {
    max-width: 1000px;
    margin: 20px auto;
    text-align: center;
}

/* 타이틀 */
.gpu-title {
    font-size: 40px;
    font-weight: 700;
    color: #bc481f;
    line-height: 1.4;
}

.gpu-title span {
    display: block;
    margin-top: 10px;
}

/* 설명 */
.gpu-desc {
    margin-top: 30px;
    font-size: 18px;
    color: #777;
    line-height: 1.8;
}

/* --- Infra(GPU) 제품 카드 (Overview) --- */
.product-cards {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.product-card {
    border: 1px solid #e9ecef;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

.product-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__name {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #1e1e1e;
}

.product-card__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #666;
    flex: 1;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: #d6a84b;
    color: #1e1e1e;
}

.product-card__cta:hover {
    filter: brightness(0.97);
}

@media (max-width: 1024px) {
    .product-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card__image img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-cards {
        margin-top: 14px;
    }

    .product-card {
        padding: 12px;
        border-radius: 12px;
    }

    .product-card__name {
        font-size: 15px;
    }

    .product-card__desc {
        font-size: 13px;
        word-break: keep-all;
    }
}


/* 반응형 */
@media (max-width: 768px) {
    .gpu-title {
        font-size: 28px;
    }
}