	.portal-card {
	    display: flex;
	    align-items: center;
	    gap: 1rem;
	    width: 100%;
	    padding: 0.5rem;
	    border: 1px solid #b9d5ee;
	    border-radius: 10px;
	    text-decoration: none;
	    color: #1d3d5e;
	    transition: all 0.2s ease;
	    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
	}

	.portal-card:hover {
	    text-decoration: none;
	    color: #1d3d5e;
	    transform: translateY(-1px);
	    box-shadow: 0 6px 18px rgba(29, 61, 94, 0.08);
	}

	.portal-card-text {
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    flex: 1;
	    min-width: 0;
	}

	.portal-card-text span {
	    display: block;
	    font-size: 0.8rem;
	    font-weight: 700;
	    line-height: 1.2;
	    margin-bottom: 0.22rem;
	    color: #0e3d63;
	}

	.portal-card-text small {
	    display: block;
	    font-size: 0.7rem;
	    color: #2a4d69;
	    line-height: 1.4;
	}

	@media (max-width: 991.98px) {
	    .portal-card {
	        height: auto;
	        min-height: 116px;
	    }
	}