.employees-title1 {
    text-align: right;
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.posts1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card1 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.post-card1:hover {
    transform: translateY(-6px);
}

.post-card1 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.post-content1 {
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-content1 h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #222;
    min-height: 45px;
}

.meta1 {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.writer1 {
    font-size: 14px;
    color: #f58220;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-content1 p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    height: 65px;
    overflow: hidden;
}

.read-more1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: #f58220;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: auto;
    transition: 0.3s;
}

.read-more1:hover {
    background: #d96d10;
}

.pagination1 {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pagination1 a {
    padding: 8px 12px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
}

.pagination1 a.active {
    background: #f58220;
    color: white;
}

@media (max-width: 1024px) {
    .posts1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .posts1 {
        grid-template-columns: 1fr;
    }

    .post-card1 img {
        height: 220px;
    }
}