.zpt {
    padding: 80px 0;
    background: #fff;
}

.zpt__heading {
    text-align: center;
    margin: 0 0 15px;
    font-size: 2.5rem;
}

.zpt__description {
    text-align: center;
    margin: 0 auto 50px;
    max-width: 700px;
    font-size: 1.1rem;
    color: #666;
}

.zpt__grid {
    justify-content: center;
}

.zpt__col {
    margin-bottom: 30px;
}

.zpt__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.zpt__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Image */
.zpt__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.zpt__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.zpt__card:hover .zpt__image {
    transform: scale(1.05);
}

.zpt__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zpt__card:hover .zpt__image-wrap::after {
    opacity: 1;
}

/* Body */
.zpt__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 24px 24px;
}

.zpt__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #000;
}

.zpt__text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.zpt__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-top: auto;
}

.zpt__arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.zpt__card:hover .zpt__arrow {
    transform: translateX(4px);
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
    .zpt {
        padding: 60px 0;
    }

    .zpt__heading {
        font-size: 2rem;
    }

    .zpt__col {
        margin-bottom: 20px;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .zpt {
        padding: 40px 0;
    }

    .zpt__heading {
        font-size: 1.75rem;
    }

    .zpt__description {
        margin-bottom: 30px;
    }
}
