/* Heavy Vehicle Emergency Block Styles */
.pmk-heavy-vehicle-block {
    background-color: var(--pmk-gray-100);
}

.pmk-heavy-vehicle-block .pmk-heavy-vehicle-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px;
    align-items: center;
}

/* Image Column (Left) */
.pmk-heavy-vehicle-block .pmk-heavy-vehicle-image {
    display: flex;
    justify-content: center;
    order: 1;
}

.pmk-heavy-vehicle-block .pmk-heavy-vehicle-image .pmk-img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

/* Content Column (Right) */
.pmk-heavy-vehicle-block .pmk-heavy-vehicle-content {
    padding-right: 0;
    order: 2;
}

.pmk-heavy-vehicle-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--pmk-secondary);
    margin: 15px 0 20px;
    line-height: 1.3;
}

.pmk-heavy-vehicle-heading .pmk-title-highlight {
    color: var(--pmk-primary);
    display: inline;
    background-image: linear-gradient(to right, rgba(231, 43, 42, 0.2) 0%, rgba(231, 43, 42, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
}

.pmk-heavy-vehicle-desc {
    color: var(--pmk-gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Button */
.pmk-heavy-vehicle-content .pmk-btn-lg {
    padding: 15px 30px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pmk-heavy-vehicle-content .pmk-btn-lg svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .pmk-heavy-vehicle-block .pmk-heavy-vehicle-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .pmk-heavy-vehicle-block .pmk-heavy-vehicle-image {
        order: 1;
    }

    .pmk-heavy-vehicle-block .pmk-heavy-vehicle-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .pmk-heavy-vehicle-heading {
        font-size: 28px;
    }

    .pmk-heavy-vehicle-content .pmk-btn-lg {
        width: 100%;
        justify-content: center;
    }
}
