.dl-7498f9be-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.dl-7498f9be-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dl-7498f9be-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.dl-7498f9be-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.dl-7498f9be-icon svg {
    width: 40px;
    height: 40px;
}

.dl-7498f9be-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.dl-7498f9be-desc {
    margin: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.dl-7498f9be-meta-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.dl-7498f9be-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.dl-7498f9be-meta i, .dl-7498f9be-meta svg {
    color: #777;
    fill: #777;
}

.dl-7498f9be-btn {
    display: inline-block;
    padding: 12px 25px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.dl-7498f9be-btn:hover {
    opacity: 0.9;
}