﻿


.survey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.survey-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .survey-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

.survey-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.survey-body {
    padding: 16px;
}

    .survey-body h3 {
        margin: 0 0 8px;
    }

    .survey-body p {
        font-size: 14px;
        color: #555;
        min-height: 40px;
    }

.badge {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 10px;
    background: #0b00c6;
    color: #fff;
    border-radius: 12px;
    font-size: 12px;
}

.survey-footer {
    padding: 16px;
    text-align: center;
}

.btn-start {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(287deg, #ff4a07, #ffbb11);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .btn-start:hover {
        box-shadow: 0 6px 12px rgba(108, 99, 255,0.3);
        transform: translateY(-2px);
    }