/* About Block Styles */
.pmk-about-block {
    background-color: var(--pmk-white);
}

.pmk-about-row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.pmk-about-row-first {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: stretch;
}

.pmk-about-row-cards {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 0;
}

.pmk-about-title-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
}

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

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

/* Feature Cards */
.pmk-feature-card {
    background-color: var(--pmk-gray-50);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pmk-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pmk-feature-icon {
    margin-bottom: 20px;
}

.pmk-feature-icon svg {
    width: 50px;
    height: 50px;
    color: var(--pmk-primary);
}

.pmk-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pmk-secondary);
    line-height: 1.4;
    flex-grow: 1;
    min-height: 50px;
    margin-bottom: 15px;
}

.pmk-feature-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.pmk-feature-subtitle {
    color: var(--pmk-gray-500);
    font-size: 14px;
}

.pmk-feature-link {
    color: var(--pmk-secondary);
    transition: color 0.3s ease;
}

.pmk-feature-link:hover {
    color: var(--pmk-primary);
}

.pmk-feature-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .pmk-about-row-first {
        grid-template-columns: 1fr 1fr;
    }

    .pmk-about-title-col {
        grid-column: span 2;
    }

    .pmk-about-row-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pmk-about-row-first,
    .pmk-about-row-cards {
        grid-template-columns: 1fr;
    }

    .pmk-about-title-col {
        grid-column: span 1;
    }

    .pmk-about-heading {
        font-size: 30px;
    }
}
