.portfolio-section ul {
    gap: 12px;
}

.blog-info{
    padding: 16px 12px;
}

.blog-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.blog-info h2 {
    /* font-size: 24px; */
    font-size: 18px;
    font-weight: 600;
    color: #000;
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 80%; */
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


.blog-pill {
    background: #4B93EC33;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #000000;
	text-wrap: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}


.circle-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px 2.5px #D1D1D140;
}

.chevron-circle-icon {
    stroke: #018F83;
    font-size: 14px;
}

.blog-card{
	background-color: #FAFAFA;
	border-radius: 8px;
	overflow: hidden;
}

.blog-image.word-card img{
	width: 100%;
	max-height: 350px;
}



.word-card {
	/* border: 1px solid #e9e8e8; */
	cursor: pointer;
	overflow: hidden;
	position: relative;
	transition: all 0.6s ease;
}

.speech-ballon {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 124%;
	transition: all 0.6s ease;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.50) 24%);
	transform: translateY(100%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.word-speech-ballon {
	position: absolute;
	top: 120%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	padding: 14px 24px;
	border-radius: 30px;
	border: 1px solid #06d1c0;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.6s ease;
	font-size: 16px;
	font-weight: 500;
	color: #2B2C2D;
	z-index: 5;
}




/* .word-card:hover {
	box-shadow: 0px 4px 4px 0px #00000073;
	transform: translateY(-10px);
} */

.word-card:hover .speech-ballon {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
}

.word-card:hover .word-speech-ballon {
	top: 50%;
}


@media screen and (max-width:575px) {
	.blue-header h2 {
		text-align: center;
	}
}