.research-hub {
    margin-top: 120px;
    margin-bottom: 100px;
}
.research-hub__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.research-card {
    background: #ffffff; 
    overflow: hidden; 
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.research-card__image img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.research-card__placeholder {
    width: 100%;
    height: 200px;
    background: #f1f1f1;
}

.research-card__title {
    font-size: 32px;
    margin-top: 20px;
    font-weight: 900; 
    height: 85px;
    color: #000;
}
.research-card__btn svg path{
	fill: #000;
}
.research-card__btn {
    display: inline-block;
    margin-top: 25px;
    background: black;  
	background-color: #fff;
	color: #000;
	 border: 1px solid #000;
    text-decoration: none;
    font-size: 20px;
	font-weight: 900;
    transition: 0.3s;
    width: 240px;
    height: 66px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.research-card__btn:hover {

    color: #fff;
    background-color: #000;
    border: 1px solid #000; 
}
.research-card__btn svg {
	margin-left: 15px;
}
.research-card__btn:hover svg path{
	fill: #fff;
}
.research-hub__title {
    font-size: 64px;
    font-weight: 900;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #000;

}

@media (max-width: 1440px) {
    .research-hub__grid { 
        grid-template-columns: repeat(1, 1fr);
    } 
}