.actions-grid-df78328d {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

@media (max-width: 1024px) {
    .actions-grid-df78328d {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .actions-grid-df78328d {
        grid-template-columns: 1fr;
    }
}

.action-card-df78328d {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.action-card-df78328d:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.action-image-wrapper-df78328d {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 5:3 Aspect Ratio */
    overflow: hidden;
    background-color: #f3f4f6;
}

.action-img-df78328d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.action-card-df78328d:hover .action-img-df78328d {
    transform: scale(1.05);
}

.action-content-df78328d {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.action-title-df78328d {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
}

.action-desc-df78328d {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1;
}

.action-btn-wrapper-df78328d {
    margin-top: auto;
}

.action-btn-df78328d {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 12px 24px;
    background-color: #F15A24;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
}

.action-btn-df78328d:hover {
    background-color: #d9410f;
    color: #ffffff;
}

.action-btn-df78328d:active {
    transform: scale(0.98);
}
