    <style>
        /* 제품소개 전용 카드 & 레이아웃 보완 스타일 */
		
		/* 부모 요소(.section-padding)를 함께 명시하여 우선순위 높이기 */
		.section-padding .product-grid-container {
			display: grid !important;
			grid-template-columns: repeat(auto-fill, minmax(300px, 360px)) !important; /* 카드 폭 강제 고정 */
			gap: 2rem;
			justify-content: center;
			margin: 0 auto;
			max-width: 1200px;
			width: 100%;
		}

		.section-padding .product-card {
			background: #ffffff;
			border-radius: 12px;
			border: 1px solid #e5e7eb;
			overflow: hidden;
			box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
			transition: transform 0.2s ease, box-shadow 0.2s ease;
			display: flex;
			flex-direction: column;
			height: 100%;
			max-width: 360px; /* 카드 최대 너비 보장 */
			margin: 0 auto;
		}

        .product-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .product-card {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .product-image {
            width: 100%;
            height: 220px;
            background-color: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-badge {
            align-self: flex-start;
            background-color: #e6f4ea;
            color: #1b4332;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            margin-bottom: 0.75rem;
        }

        .product-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .product-description {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
            border-top: 1px solid #f3f4f6;
            padding-top: 1rem;
            flex-grow: 1;
        }

        .product-features li {
            font-size: 0.9rem;
            color: #374151;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .product-features li i {
            color: #10b981;
            margin-right: 0.5rem;
            font-size: 0.85rem;
        }

        .product-action {
            margin-top: auto;
        }

        .btn-detail {
            display: inline-block;
            width: 100%;
            text-align: center;
            background-color: #1b4332;
            color: #ffffff;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .btn-detail:hover {
            background-color: #2d6a4f;
        }
    </style>