.site-info {
    visibility: hidden;
}

.site-info:before {
    visibility: visible;
    display: block;
    content: "©2016 - 2026 digitalniradio.si; Vse pravice pridržane. ";
Pravno obvestilo
}
.dab-help-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 22px 0;
    padding: 16px 18px;

    background: #fff7d6;
    border: 1px solid #f2cf55;
    border-left: 5px solid #f2b900;
    border-radius: 10px;

    color: #17324d;
    text-decoration: none;
    box-sizing: border-box;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.dab-help-card:hover {
    background: #fff2b8;
    color: #17324d;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);
}

.dab-help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;

    background: #f2b900;
    border-radius: 50%;
    font-size: 23px;
}

.dab-help-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
    line-height: 1.45;
}

.dab-help-content strong {
    font-size: 17px;
    color: #17324d;
}

.dab-help-content span {
    font-size: 15px;
    color: #40566b;
}

.dab-help-arrow {
    flex: 0 0 auto;
    font-size: 25px;
    font-weight: 700;
    color: #4e9b28;
    transition: transform 0.2s ease;
}

.dab-help-card:hover .dab-help-arrow {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .dab-help-card {
        align-items: flex-start;
        padding: 14px;
    }

    .dab-help-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .dab-help-content strong {
        font-size: 16px;
    }

    .dab-help-arrow {
        display: none;
    }
}