.hero-related-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    margin-top: 28px;
    direction: rtl;
}

.hero-related-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 52px;
    padding: 12px 25px;
    border: 2px solid #ffc13b;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.hero-related-link--primary {
    color: #073f42;
    background: #ffc13b;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.hero-related-link--secondary {
    color: #fff;
    background: rgba(7, 73, 74, .2);
    backdrop-filter: blur(8px);
}

.hero-related-link:hover {
    color: #073f42;
    background: #fff8ed;
    border-color: #fff8ed;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
}

.hero-related-link:focus-visible {
    outline: 3px solid #bdebed;
    outline-offset: 4px;
}

.post-header .hero-related-actions,
.course-header .hero-related-actions {
    margin-top: 24px;
}

.post-header .hero-related-link--secondary,
.course-header .hero-related-link--secondary {
    color: #073f42;
    border-color: #0b7b74;
    background: transparent;
}

@media (max-width: 560px) {
    .hero-related-actions {
        gap: 10px;
        margin-top: 22px;
    }

    .hero-related-link {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        min-height: 48px;
        padding: 11px 14px;
        font-size: 14px;
    }
}
