.resource-empty {
    max-width: 820px;
    margin: 28px auto 64px;
    padding: clamp(32px, 6vw, 64px);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0, rgba(248, 144, 56, 0.14), transparent 34%),
        #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.resource-empty-downloads {
    margin-top: 44px;
}

.resource-empty-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #e87524;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.resource-empty h2 {
    margin: 0;
    color: #172033;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.2;
}

.resource-empty p {
    max-width: 650px;
    margin: 16px auto 0;
    color: #526176;
    font-size: 1rem;
    line-height: 1.75;
}

.resource-empty-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.resource-empty-btn,
.resource-empty-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    color: #26364d;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.resource-empty-btn {
    border: 1px solid #cbd5e1;
    background: #fff;
}

.resource-empty-btn-primary {
    border-color: #f89038;
    background: #f89038;
    color: #fff;
    box-shadow: 0 8px 18px rgba(248, 144, 56, 0.25);
}

.resource-empty-link {
    color: #d76416;
}

.resource-empty-btn:hover,
.resource-empty-link:hover {
    transform: translateY(-2px);
    border-color: #f89038;
    color: #d76416;
}

.resource-empty-btn-primary:hover {
    background: #e87524;
    color: #fff;
}

.resource-empty-btn:focus-visible,
.resource-empty-link:focus-visible {
    outline: 3px solid rgba(248, 144, 56, 0.35);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .resource-empty {
        margin-top: 20px;
        padding: 30px 20px;
    }

    .resource-empty-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .resource-empty-btn,
    .resource-empty-link {
        width: 100%;
        box-sizing: border-box;
    }
}
