:root {
    --primary: #6b207d;
    --primary-dark: #541963;
    --text-color: #555555;
    --border: #e8e8e8;
}

.mpf-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mpf-areas-grid .ac-desc {
    display: none;
}

.mpf-areas-grid .area-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

.mpf-areas-grid .area-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.mpf-areas-grid .ac-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border);
}

.mpf-areas-grid .ac-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mpf-areas-grid .ac-title {
    font-family: 'FS Albert', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.25;
}



.mpf-areas-grid .ac-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.2s;
}

.mpf-areas-grid .ac-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease !important;
    transform: translateX(0);
}

.mpf-areas-grid .area-card:hover .ac-link {
    color: var(--primary-dark) !important;
}

.mpf-areas-grid .area-card:hover .ac-link svg {
    transform: translateX(3px) !important;
}

.mpf-areas-grid .area-card:hover .ac-title {
    color: var(--primary) !important;
}


@media (max-width: 1024px) {
    .mpf-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}


@media (max-width: 767px) {
    .mpf-areas-grid .ac-body {
        padding: 14px;
    }
    .mpf-areas-grid .ac-title {
        font-size: 17px;
    }
    .mpf-areas-grid .ac-img {
        height: 150px;
    }
    .why-by-with-chesterton-marbella-accreditations-awards{
        padding: 30px !important;
    }
    .sell-seller-advisory{
	    padding-top: 0px;
    }
}

@media (max-width: 640px) {
    .mpf-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mpf-areas-grid .ac-img {
        height: 189px;
    }
    .mpf-areas-grid .ac-desc {
        display: block;
        font-size: 13px;
        color: var(--text-color);
        margin-bottom: 12px;
        line-height: 1.6;
        flex: 1;
    }
    .mpf-areas-grid .ac-body {
        padding: 20px;
    }
}