/*== == Case Study Category == ==*/

.cs-cat-title {
    font-size: 48px;
    line-height: 48px;
}

.all-posts-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 80px;
    margin-top: -50px;
}

.all-post-item {
    flex: 0 0 calc(100% / 2 - 20px);
    display: flex;
}

.all-post-item img {
    max-height: 350px;
    object-fit: cover;
    width: 100%;
}

.all-post-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px;
    background: #333;
    flex: 1;
}

.all-post-link {
    width: 40px;
    margin: 0;
    justify-content: center;
    display: flex;
    background: var(--canary);
    padding: 8px 0px;
    font-size: 24px;
    border-radius: var(--curve);
	transition: 
		all 300ms ease;
}

.all-post-title p {
    margin: 0;
    font-size: 24px;
    position: relative;
    transition:
		all 300ms ease;
    padding-right: 10px;
}

.all-post-item:hover .all-post-title p {
	color: var(--canary);
}

.all-post-bottom a {
    color: white;
}

.all-post-item:hover a {
    color: #16a587;
}


.all-post-item a {
    color: white;
    display: flex;
    flex-direction: column;
    flex: 1;
    font-weight: 700;
}

	/*== == Case Study Category END == ==*/