.incidents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.incident-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    padding: 24px;
    background: #fff;
    border: 1px solid #c7d6ea;
    border-radius: 20px;
    color: #1f3b63;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.incident-card__link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.incident-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.incident-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
}

.incident-card__location,
.incident-card__date {
    color: #1f3b63;
}

.incident-card__label {
    font-size: 15px;
    font-weight: 700;
}

.incident-card__time {
    font-size: 13px;
    line-height: 1.5;
    color: #304f78;
    margin-bottom: 15px;
}

.incident-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f3b63;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.incident-card__footer {
    margin-top: 40px;
}

.incident-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 15px;
    color: #1f3b63;
}

.incident-card__arrow {
    transition: transform 0.2s ease;
}

.incident-card:hover .incident-card__arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .incidents-grid {
        grid-template-columns: 1fr;
    }

    .incident-card {
        min-height: auto;
    }

    .incident-card__title {
        font-size: 20px;
    }
}

.important-incident-link a {
    display: flex;
    align-items: center;
}

.dea-warning-icon {
    width: 20px;
    height: auto;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}