.dbg-grid-f72300c2 {
    display: grid;
    /* Default fallback, handled by Elementor controls */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    width: 100%;
}

.dbg-card-f72300c2 {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
}

.dbg-card-f72300c2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.dbg-overlay-f72300c2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default gradient, can be overridden by controls */
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.dbg-content-wrap-f72300c2 {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    width: 65%;
}

.dbg-badge-f72300c2 {
    border: 1px solid #28a745;
    color: #28a745;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    background-color: rgba(255,255,255,0.9);
}

.dbg-title-f72300c2 {
    font-size: clamp(16px, 2vw + 10px, 22px);
    font-weight: 700;
    color: #0a192f;
    margin: 0 0 20px 0;
    line-height: 1.4;
    word-break: break-word;
}

.dbg-link-f72300c2 {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.dbg-link-f72300c2:hover {
    color: #0056b3;
}

/* Ensure mobile content wrap is always full width for readability */
@media (max-width: 768px) {
    .dbg-content-wrap-f72300c2 {
        width: 100%;
    }
}