/* ============================
   KM Runner Benefits Widget
   ============================ */

.km-runner-benefits {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
}

.km-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 15px;
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.km-benefit-item:hover {
    border-color: #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.km-benefit-kicker {
    flex-shrink: 0;
}

.km-benefit-icon {
    width: 55px;
    height: 50px;
    object-fit: contain;
}

.km-benefit-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.km-benefit-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.km-benefit-subtitle a {
    color: #d22124;
    font-weight: 500;
    text-decoration: none;
}

.km-benefit-subtitle a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .km-runner-benefits {
        grid-template-columns: 1fr;
    }
}