/* ═══════════════════════════════════════════════
   RIGHT COLUMN — знайомства
   /css/right_column/style.css
   ═══════════════════════════════════════════════ */

.rc-dating {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rc-dating__title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.rc-dating__desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.rc-dating__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    white-space: nowrap;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.rc-dating__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    filter: brightness(1.08);
}

.rc-dating__btn--women { background: #e8437a; color: #fff; }
.rc-dating__btn--men   { background: #2a7de1; color: #fff; }

/* ═══════════════════════════════════════════════
   MOBILE ≤ 1024px
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .sidebar.right {
        display: none;
    }
}