.recommendation-wrapper {
	padding: 14px 10px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.06);
	margin-bottom: 16px;
	transition: transform 0.2s ease;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	
	min-height: 110px;
	width: 100%;
}

.recommendation-wrapper:hover {
    transform: translateY(-2px);
}

.recommendation-logo {
    max-width: 72px;
    max-height: 42px;
    object-fit: contain;
}
    
.recommendation-text {
    background: #177c91;
    color: white;

    padding: 3px 10px;
    border-radius: 20px;

    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;

    text-align: center;
}

.recommendation-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: center;
	gap: 16px;
}
    
 .recommendation-box {
	background-color: #f8f9fa;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }
 @media (max-width: 768px) {
 .recommendation-box {
	display: none;
 }
}