.pf-news-section{
    background:#fff;
    font-family:Inter,sans-serif;
}
.pf-heading{
    margin-bottom:35px;
}
.pf-subtitle{
    font-family: 'Cairo';
    color: #3e82df;
    margin-bottom: 20px;
}
.pf-heading h2{
    font-size:52px;
    color:#3058A6;
    font-weight:700;
    margin-bottom:22px;
    line-height: 1.2;
    clear:both
}
.pf-heading p{
    font-family: 'Cairo';
    color: #0c2f62;
    font-size: 19px;
    line-height: 1.5;
    font-weight: normal;
}
.link-hover {
    text-decoration: none;
    display: block;       
}
.pf-post {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}
.pf-thumb {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 18px;
    flex-shrink: 0;
    transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.link-hover:hover .pf-thumb {
    transform: scale(1.05);
}
.pf-content {
    flex: 1;
}
.pf-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #678;
}
.badge-container {
    background: #4a76b5;
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    float: left;
    font-weight: 600;
}
.badge-container span:first-child {
    color: #55fef9;
}
.badge-container span {
    font-family: "Cairo";
    font-size: 14px;
    font-weight: 600;
}
.badge-container span.min-read {
    color: #0991e3;
}
.pf-content h3 {
    font-size: 18px;
    line-height: 1.4;
    color: #0c2f62;
    font-weight: 500;
    margin: 0;
    position: relative;
    display: inline; 
    padding-bottom: 4px; 
    transition: color 0.3s ease;
}
.pf-content h3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4a76b5;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.link-hover:hover .pf-content h3 {
    color: #4a76b5;
}
.link-hover:hover .pf-content h3::after {
    transform: scaleX(1); 
}
.pf-feature{
   position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
    margin-top: 5rem;
}
.pf-feature img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pf-feature:hover img{
  transform: scale(1.04);
}
.pf-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    background: linear-gradient(
    173deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.92) 85%
  );
  background-size: 100% 210%;
  background-position: top center;
  transition: background-position 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pf-overlay .pf-meta{
    color:#fff;
    margin-bottom:18px;
}
.pf-overlay h3{
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: normal;
    margin: 0;
}
.pf-feature:hover .pf-overlay {
  background-position: bottom center;
  animation: waveSway 2.5s ease-in-out infinite alternate;
  animation-delay: 0.6s;
}
@keyframes waveSway {
  0% {
    background-size: 100% 210%;
    transform: translateY(0);
  }
  50% {
    background-size: 115% 220%; 
    transform: translateY(-2px); 
  }
  100% {
    background-size: 100% 210%;
    transform: translateY(0);
  }
}
@media(max-width:992px){
    .pf-heading h2{
    font-size:42px;
    }
    .pf-content h3{
    font-size:22px;
    }
    .pf-overlay h3{
    font-size:28px;
    }
}
@media(max-width:768px){
    .pf-post{
    flex-direction:column;
    }
    .pf-thumb{
    width:100%;
    height:240px;
    }
    .pf-heading h2{
    font-size:34px;
    }
    .pf-heading p{
    font-size:18px;
    }
    .pf-overlay{
    padding:25px;
    }
    .pf-overlay h3{
    font-size:24px;
    }
}