.new-our-popular-section {
    padding: 70px 20px;
    background: linear-gradient(to bottom, #f8f9fb, #ffffff);
    text-align: center;
    padding-bottom: 0px;
}
.new-our-popular-section .section-header h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 30px;
}
.new-our-popular-section .section-header p {
    color: #666;
    margin-bottom: 40px;
}
.new-our-popular-section .container {
    max-width: 1200px;
    margin: auto;
}
.new-our-popular-section .works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.new-our-popular-section .work-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}
.new-our-popular-section .work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.new-our-popular-section .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(217, 201, 110, 0.95);
    color: #000;
    padding: 14px;
}
.new-our-popular-section .overlay h4 {
    margin: 0;
    font-weight: 600;
}
.new-our-popular-section .work-item:hover img {
    transform: scale(1.08);
}
.new-our-popular-section .work-item:hover {
    transform: translateY(-6px);
}
.new-our-popular-section .work-item a {
    text-decoration: none;
}
