.head__leadership {
    position: relative;
}
.img__background {
    height: 1000px;
    background-size: cover;
    background-position: center;
}
.block__text {
    position: absolute;
    top: 45%;
    transform: translate(0%, -50%); 
}
.posts {
    margin-top: 160px;
    margin-bottom: 100px;
}
.posts .container {
    width: 1680px;
}
.block__text h2 { 
    font-weight: 900;
    font-size: 64px;
    color: #000;
    line-height: 100%;
    margin-bottom: 25px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card { 
    padding: 15px;
    display: flex;
    flex-direction: column;
}

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

.post-title {
    font-size: 32px;
    margin: 30px 0 20px;
    font-weight: 900; 
	height: 105px;	
}
.post-title a {
    color: #000;
}

.post-excerpt p{
    color: #000;
    font-size: 22px;
    flex-grow: 1;
	margin-bottom: 0px;
}

.read-more {
    display: inline-block;
    margin-top: 25px;
    background: black;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 20px!important;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    width: 240px;
    height: 66px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.read-more svg{
    margin-left: 10px;
}
.read-more:hover {
    background: #000;
    color: #fff;
}
.read-more:hover svg path{
    fill: #fff;
}

@media (max-width: 1700px) {
    .posts .container {
        width: 95%;
    }
}

@media (max-width: 1440px) { 
	.read-more{
		width: 200px;
  		height: 50px;
		font-size: 18px !important;
	}
	.post-card .post-title {
		height: 95px;
		font-size: 26px;
	}
    .posts-grid { 
        gap: 10px;
    }
    .post-thumb img {
        height: 240px;
    }
    .img__background {
        height: 800px;
    }
    .post-excerpt p{
        font-size: 18px;
        line-height: 120%;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .img__background {
        background-image: none!important;
        height: 220px;
    }
    .block__text h2 {
        font-size: 35px;
    }
    .block__text {
        top: 90%;
    }
    .posts-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .posts .container {
        width: 100%;
    }
    .post-card {
        padding: 0px;
    }
    .post-card .post-title,
    .post-card .post-excerpt {
        width: 300px;
        margin: 0 auto;
    }
   
    .post-card .post-title {
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
	
    .post-card .post-excerpt p{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .post-card .read-more { 
        font-size: 16px!important;
        width: 160px;
        margin-bottom: 30px; 
        margin-top: 5px;
        height: 50px;
        margin-left: 10%;
    }
    .posts {
      margin-top: 60px;
      margin-bottom: 60px;
    }













}