.sfs-119-container {
	width: 100%;
	display: block;
	box-sizing: border-box;
	text-align: center;
}

.sfs-119-main-title {
	font-size: 36px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 40px 0;
	letter-spacing: 1px;
}

@media (min-width: 768px) {
	.sfs-119-main-title {
		font-size: 48px;
	}
}

.sfs-119-cat-title {
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 20px 0;
}

.sfs-119-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	max-width: 1200px;
}

.sfs-119-card {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	overflow: hidden;
	padding: 15px;
	box-sizing: border-box;
	aspect-ratio: 1 / 1;
	flex: 0 1 calc(50% - 20px);
	max-width: 200px;
    position: relative; /* CRITICAL: Banner positioning */
}

@media (min-width: 768px) {
	.sfs-119-card {
		flex: 0 1 200px; 
	}
}

.sfs-119-card img {
	display: block;
	height: auto;
	object-fit: contain;
    position: relative; /* Keep logo in flow but under banner */
    z-index: 1;
}

.sfs-119-card span {
	font-weight: bold;
	font-size: 18px;
	text-align: center;
    position: relative;
    z-index: 1;
}

/* Coming Soon Banner Overlay */
.sfs-119-coming-soon-banner {
    position: absolute;
    top: 0; /* Anchor to top edge */
    right: 0; /* Anchor to right edge */
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 35px; /* Adjust padding for visual weight */
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    transform-origin: center;
    transform: translate(25%, -25%) rotate(45deg); /* Use translate to position perfectly in corner instead of specific pixel values */
    z-index: 10; /* Ensure it stays above the logo */
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    pointer-events: none;
    width: 120px; /* Force width to ensure consistent rotation appearance */
}
