/* ========================================================= FILTER SECTION — topbar only ========================================================= */ .hr-filter-section { background: #ffffff; border-radius: 20px; padding: 10px 14px; position: sticky; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border: 0.5px solid #e5e7eb; transition: box-shadow 0.3s ease; } .hr-filter-section.is-sticky { box-shadow: 0 4px 24px rgba(0,0,0,0.12); } /* Raised only while the mobile drawer is open, so the nested .hr-filter-drawer (z-index 999) can outrank .hr-drawer-overlay (z-index 998), which now sits outside this stacking context. */ .hr-filter-section.has-open-drawer { z-index: 1000; } /* ========================================================= TOP BAR ========================================================= */ .hr-filter-topbar { display: flex; align-items: center; gap: 10px; } /* ========================================================= SEARCH ========================================================= */ .hr-search-wrap { flex: 1; position: relative; display: flex; align-items: center; background: #ffffff; border: 1.5px solid #e5e7eb; border-radius: 50px; padding: 0 4px; height: 42px; transition: border-color 0.2s ease; } .hr-search-wrap:focus-within { border-color: #c4b5fd; } .hr-search-icon { position: absolute; left: 14px; color: #9ca3af; pointer-events: none; } #hr-search-input { width: 100%; height: 42px; padding: 0 12px 0 38px; border: none; border-radius: 50px; font-size: 15px; color: #374151; background: transparent; outline: none; } #hr-search-input::placeholder { color: #9ca3af; } /* ========================================================= FILTER TOGGLE BUTTON ========================================================= */ .hr-filter-toggle-btn { display: flex; align-items: center; gap: 8px; height: 42px; padding: 0 20px; background: #ffffff; border: 1.5px solid #e5e7eb; border-radius: 50px; font-size: 14px; font-weight: 600; color: #7c3aed; cursor: pointer; white-space: nowrap; transition: background 0.2s ease, border-color 0.2s ease; flex-shrink: 0; } .hr-filter-toggle-btn:hover { background: #faf5ff; border-color: #c4b5fd; } .hr-filter-toggle-btn.is-active { background: #7c3aed; color: #ffffff; } .hr-filter-toggle-btn.is-active svg { stroke: #ffffff; } .hr-filter-count { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: #ef4444; color: #ffffff; font-size: 10px; font-weight: 700; border-radius: 50%; } /* ========================================================= LOADER ========================================================= */ .hr-loader { display: none; width: 18px; height: 18px; border: 2px solid #ddd; border-top: 2px solid #7c3aed; border-radius: 50%; animation: spin 0.8s linear infinite; flex-shrink: 0; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* ========================================================= DRAWER OVERLAY ========================================================= */ .hr-drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 998; backdrop-filter: blur(2px); } .hr-drawer-overlay.is-open { display: block; } /* ========================================================= FILTER DRAWER Desktop: appears below search bar as a borderless pill row Mobile: slides in from right ========================================================= */ .hr-filter-drawer { position: relative; z-index: 1; padding: 0; background: transparent; display: none; } .hr-filter-drawer.is-open { display: block; } /* Desktop pill row */ .hr-filter-pills-row { display: flex; align-items: center; gap: 12px; padding: 14px 4px 4px; border-top: 0.5px solid #f3f4f6; } /* Scrollable pill track — reset button lives outside this, so it's always visible regardless of scroll position */ .hr-pills-scroll { display: flex; align-items: center; gap: 5px; flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 28px), transparent 100%); mask-image: linear-gradient(to right, #000 calc(100% - 28px), transparent 100%); } .hr-pills-scroll::-webkit-scrollbar { display: none; } /* Hide mobile drawer fields on desktop */ .hr-drawer-header, .hr-drawer-fields { display: none; } /* Pill select wrapper */ .hr-pill-wrap { flex-shrink: 0; } /* Figma style: bordered pill with chevron */ .hr-pill-select { height: 36px; padding: 0 26px 0 14px; margin: 0; border: 1.5px solid #e9d5ff; border-radius: 10px; font-size: 14px; font-weight: 500; font-family: inherit; line-height: normal; background-color: #faf5ff; color: #374151; cursor: pointer; outline: none; appearance: none; -webkit-appearance: none; -moz-appearance: none; forced-color-adjust: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%237c3aed' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 10px 10px; transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease; white-space: nowrap; } .hr-pill-select::-ms-expand { display: none; } .hr-pill-select:focus, .hr-pill-select:hover { border-color: #a855f7; background-color: #f3e8ff; color: #7c3aed; } .hr-pill-select.has-value { border-color: #7c3aed; background-color: #ede9fe; color: #6d28d9; font-weight: 600; } /* Reset icon button */ .hr-reset-icon-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: none; border-radius: 10px; background: #f3e8ff; color: #7c3aed; cursor: pointer; flex-shrink: 0; transition: background 0.2s ease; } .hr-reset-icon-btn:hover { background: #ede9fe; } /* ========================================================= MOBILE — drawer slides in from right ========================================================= */ @media (max-width: 768px) { /* Hide desktop pill row */ .hr-filter-pills-row { display: none; } /* Drawer becomes fixed right-side panel */ .hr-filter-drawer { position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh; background: #ffffff; z-index: 999; padding: 0; display: block; transition: right 0.35s cubic-bezier(0.4, 0.0, 0.2, 1); box-shadow: -4px 0 30px rgba(0,0,0,0.15); overflow-y: auto; } .hr-filter-drawer.is-open { right: 0; } /* Show mobile header and fields */ .hr-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 16px; border-bottom: 1px solid #f3f4f6; position: sticky; top: 0; background: #ffffff; z-index: 2; } .hr-drawer-title { font-size: 18px; font-weight: 700; color: #1f2937; } .hr-drawer-close { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: none; background: #f3f4f6; border-radius: 50%; cursor: pointer; color: #374151; transition: background 0.2s; } .hr-drawer-close:hover { background: #e5e7eb; } .hr-drawer-fields { display: flex; flex-direction: column; gap: 16px; padding: 20px; } .hr-drawer-field { display: flex; flex-direction: column; gap: 6px; } .hr-drawer-field label { font-size: 12px; font-weight: 600; color: #7c3aed; text-transform: uppercase; letter-spacing: 0.05em; } .hr-drawer-select { width: 100%; height: 44px; padding: 0 36px 0 14px; border: 1.5px solid #e9d5ff; border-radius: 10px; font-size: 14px; background: #faf5ff; color: #374151; cursor: pointer; outline: none; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%237c3aed' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-color: #faf5ff; transition: border-color 0.2s ease; } .hr-drawer-select:focus { border-color: #7c3aed; background-color: #f3e8ff; } .hr-drawer-reset-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 44px; margin-top: 8px; border: 1.5px solid #e9d5ff; border-radius: 10px; background: #faf5ff; color: #7c3aed; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s ease; } .hr-drawer-reset-btn:hover { background: #f3e8ff; border-color: #a855f7; } /* Search wrap on mobile — keep grey bg */ .hr-search-wrap { height: 40px; } #hr-search-input { font-size: 14px; } } /* ========================================================= RESULTS SECTION ========================================================= */ .hr-results-section { margin-top: 30px; background: #ffffff; padding-top: 25px; border-radius: 16px; } /* ========================================================= CARD GRID ========================================================= */ #hr-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 75px 25px; } @media (max-width: 1640px) { #hr-cards-grid { gap: 110px 22px; } } @media (max-width: 1440px) { #hr-cards-grid { gap: 95px 20px; } } @media (max-width: 1200px) { #hr-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 85px 18px; } } @media (max-width: 1024px) { #hr-cards-grid { gap: 80px 15px; } } @media (max-width: 860px) { #hr-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 75px 12px; } } @media (max-width: 768px) { #hr-cards-grid { gap: 70px 10px; } } @media (max-width: 540px) { #hr-cards-grid { grid-template-columns: 1fr; gap: 65px 0; } } @media (max-width: 480px) { #hr-cards-grid { gap: 150px 0; } } @media (max-width: 360px) { #hr-cards-grid { gap: 55px 0; } } /* ========================================================= CARD WRAPPER ========================================================= */ .oper_card_wrap { position: relative; cursor: pointer; overflow: visible; display: flex; flex-direction: column; } /* ========================================================= CARD ========================================================= */ .oper_card { position: relative; z-index: 2; background: #ffffff; border-radius: 22px; overflow: visible; box-shadow: 0 4px 28px rgba(0,0,0,0.08); transition: box-shadow 0.3s ease-out; display: flex; flex-direction: column; flex: 1; } .oper_card_wrap:hover .oper_card { box-shadow: 0 8px 40px 0 rgba(0,0,0,0.18); } .oper_card_body { padding: 12px 12px 12px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; flex: 1; border-radius: 20px; background: linear-gradient(#fff 80%, rgba(222,171,245,0.31) 100%); } @media (max-width: 1024px) { .oper_card_body { padding: 12px 18px 20px; gap: 10px; } } @media (max-width: 860px) { .oper_card_body { padding: 12px 14px 18px; gap: 9px; } } @media (max-width: 540px) { .oper_card_body { padding: 12px 18px 20px; gap: 10px; } } @media (max-width: 360px) { .oper_card_body { padding: 8px 10px 14px; gap: 8px; } } /* ========================================================= CARD HEADER ========================================================= */ .oper_card_header { position: relative; height: 178px; font-family: 'BagossCondensed-TRIAL-Medium', sans-serif; border-radius: 22px; overflow: visible; } @media (max-width: 1440px) { .oper_card_header { height: 165px; } } @media (max-width: 1200px) { .oper_card_header { height: 158px; } } @media (max-width: 1024px) { .oper_card_header { height: 150px; } } @media (max-width: 860px) { .oper_card_header { height: 140px; } } @media (max-width: 768px) { .oper_card_header { height: 225px; } } @media (max-width: 540px) { .oper_card_header { height: 230px; } } @media (max-width: 480px) { .oper_card_header { height: 230px; } } @media (max-width: 360px) { .oper_card_header { height: 150px; } } .oper_card_wrap:nth-child(4n+1) .oper_card_header, .oper_card_wrap:nth-child(4n+2) .oper_card_header, .oper_card_wrap:nth-child(4n+3) .oper_card_header, .oper_card_wrap:nth-child(4n+4) .oper_card_header, .oper_card_wrap.is-featured .oper_card_header { background: transparent !important; margin: 4px; } .oper_card_header_gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; z-index: 3; pointer-events: none; } /* ========================================================= AVATAR ========================================================= */ .oper_card_avatar { position: absolute; top: -42px; left: 50%; transform: translateX(-50%); width: 270px; height: 220px; border-radius: 16px 16px 0 0; z-index: 5; pointer-events: none; perspective: 900px; } @media (max-width: 1440px) { .oper_card_avatar { width: 210px; height: 210px; top: -38px; } } @media (max-width: 1200px) { .oper_card_avatar { width: 195px; height: 195px; top: -35px; } } @media (max-width: 1024px) { .oper_card_avatar { width: 180px; height: 180px; top: -32px; } } @media (max-width: 860px) { .oper_card_avatar { width: 165px; height: 165px; top: -28px; } } @media (max-width: 768px) { .oper_card_avatar { width: 155px; height: 155px; top: -26px; } } @media (max-width: 540px) { .oper_card_avatar { width: 190px; height: 190px; top: -34px; } } @media (max-width: 480px) { .oper_card_avatar { width: 100%; height: 285px; top: -60px; } } @media (max-width: 360px) { .oper_card_avatar { width: 155px; height: 155px; top: -26px; } } .oper_avatar_inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1); } .oper_card_wrap:hover .oper_avatar_inner { transform: rotateY(180deg); } .oper_avatar_front, .oper_avatar_back { position: absolute; inset: 0; width: 100%; height: 100%; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 16px 16px 0 0; overflow: hidden; } .oper_avatar_back { transform: rotateY(180deg); } .oper_avatar_front img, .oper_avatar_back img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; } /* ========================================================= COUNTRY TAG ========================================================= */ .oper_card_location { position: absolute; top: calc(220px - 42px - 36px); right: 12px; z-index: 20; background: rgba(255,255,255,0.88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-radius: 20px; padding: 4px 10px 4px 8px; display: flex; align-items: center; gap: 6px; box-shadow: 0 1px 4px rgba(0,0,0,0.12); white-space: nowrap; min-width: max-content; } @media (max-width: 1640px) { .oper_card_location { top: calc(210px - 38px - 42px); right: 10px; } } @media (max-width: 1440px) { .oper_card_location { top: calc(210px - 38px - 36px); right: 10px; } } @media (max-width: 1200px) { .oper_card_location { top: calc(195px - 35px - 36px); right: 8px; } } @media (max-width: 1024px) { .oper_card_location { top: calc(180px - 32px - 36px); right: 8px; } } @media (max-width: 860px) { .oper_card_location { top: calc(165px - 28px - 30px); right: 6px; padding: 3px 8px 3px 5px; } } @media (max-width: 768px) { .oper_card_location { top: calc(155px - 26px - 30px); right: 6px; } } @media (max-width: 540px) { .oper_card_location { top: calc(190px - 34px - 36px); right: 8px; } } @media (max-width: 480px) { .oper_card_location { top: calc(180px - 20px - 36px); right: 8px; } } @media (max-width: 360px) { .oper_card_location { top: calc(155px - 26px - 28px); right: 5px; padding: 2px 7px 2px 4px; } } .oper_location_flag { font-size: 16px; line-height: 1; display: inline-block; flex-shrink: 0; } .oper_location_name { font-size: 14px; line-height: 22px; font-weight: 500; font-family: 'BagossCondensed-TRIAL-Medium', sans-serif; color: #1f2937; flex-shrink: 0; } @media (max-width: 860px) { .oper_location_flag { font-size: 13px; } .oper_location_name { font-size: 10px; } } @media (max-width: 360px) { .oper_location_flag { font-size: 12px; } .oper_location_name { font-size: 9px; } } /* ========================================================= FEATURED BADGE ========================================================= */ .oper_featured_badge { position: absolute; top: -24px; left: -22px; z-index: 15; width: 140px; height: auto; } .oper_featured_badge img { width: 100%; height: auto; display: block; } @media (max-width: 1640px) { .oper_featured_badge { width: 150px; top: -36px; left: -34px; } } @media (max-width: 1440px) { .oper_featured_badge { width: 125px; top: -30px; left: -28px; } } @media (max-width: 1200px) { .oper_featured_badge { width: 135px; top: -33px; left: -30px; } } @media (max-width: 1024px) { .oper_featured_badge { width: 135px; top: -30px; left: -20px; } } @media (max-width: 860px) { .oper_featured_badge { width: 115px; top: -24px; left: -14px; } } @media (max-width: 768px) { .oper_featured_badge { width: 100px; top: -20px; left: -10px; } } @media (max-width: 540px) { .oper_featured_badge { width: 85px; top: -16px; left: -8px; } } @media (max-width: 480px) { .oper_featured_badge { width: 145px; top: -35px; left: -33px; } } @media (max-width: 360px) { .oper_featured_badge { width: 60px; top: -10px; left: -4px; } } /* ========================================================= CARD NAME & BIO ========================================================= */ .oper_card_name { font-size: 20px; font-weight: 500; font-family: 'BagossCondensed-TRIAL-Medium', sans-serif; color: #1e1b4b; margin: 0; line-height: 28px; } @media (max-width: 1200px) { .oper_card_name { font-size: 17px; } } @media (max-width: 1024px) { .oper_card_name { font-size: 16px; } } @media (max-width: 860px) { .oper_card_name { font-size: 15px; } } @media (max-width: 540px) { .oper_card_name { font-size: 17px; } } @media (max-width: 360px) { .oper_card_name { font-size: 14px; } } .oper_card_bio { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } @media (max-width: 1024px) { .oper_card_bio { font-size: 12px; } } @media (max-width: 860px) { .oper_card_bio { font-size: 11px; } } @media (max-width: 540px) { .oper_card_bio { font-size: 12px; } } @media (max-width: 360px) { .oper_card_bio { font-size: 11px; } } /* ========================================================= CERTIFICATION BADGES ========================================================= */ .oper_card_badges { position: relative; background: #f3f0ff; border-radius: 15px; padding: 9px 18px; width: 80%; height: 40px; margin-top: 10px; } .oper_card_badges .badge { position: absolute; object-fit: contain; transition: 0.3s ease; } .badge-left { width: clamp(30px,3vw,42px); height: auto; left: 10px; top: 50%; transform: translateY(-50%); } .badge-center { width: clamp(40px,4vw,50px); height: auto; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; } .badge-right { width: clamp(30px,3vw,42px); height: auto; right: 10px; top: 50%; transform: translateY(-50%); } @media (max-width: 1640px) { .oper_card_badges { width: 82%; height: 48px; } .badge-center { width: 44px; height: 44px; } .badge-left, .badge-right { width: 34px; height: 34px; } } @media (max-width: 1440px) { .oper_card_badges { width: 84%; height: 44px; } .badge-center { width: 42px; height: 42px; } .badge-left, .badge-right { width: 32px; height: 32px; } } @media (max-width: 1200px) { .oper_card_badges { width: 85%; height: 42px; border-radius: 12px; } .badge-center { width: 40px; height: 40px; } .badge-left, .badge-right { width: 30px; height: 30px; } } @media (max-width: 1024px) { .oper_card_badges { width: 88%; height: 40px; border-radius: 10px; } .badge-center { width: 38px; height: 38px; } .badge-left { width: 28px; height: 28px; left: 8px; } .badge-right { width: 28px; height: 28px; right: 8px; } } @media (max-width: 860px) { .oper_card_badges { width: 90%; height: 38px; border-radius: 8px; } .badge-center { width: 36px; height: 36px; } .badge-left { width: 26px; height: 26px; left: 6px; } .badge-right { width: 26px; height: 26px; right: 6px; } } @media (max-width: 768px) { .oper_card_badges { width: 90%; height: 36px; } .badge-center { width: 34px; height: 34px; } .badge-left { width: 24px; height: 24px; left: 6px; } .badge-right { width: 24px; height: 24px; right: 6px; } } @media (max-width: 540px) { .oper_card_badges { width: 86%; height: 44px; } .badge-center { width: 42px; height: 42px; } .badge-left { width: 32px; height: 32px; left: 8px; } .badge-right { width: 32px; height: 32px; right: 8px; } } @media (max-width: 480px) { .oper_card_badges { width: 60%; height: 42px; } .badge-center { width: 50px; height: 50px; } .badge-left { width: 40px; height: 40px; left: 7px; } .badge-right { width: 40px; height: 40px; right: 7px; } } @media (max-width: 360px) { .oper_card_badges { width: 92%; height: 38px; } .badge-center { width: 36px; height: 36px; } .badge-left { width: 26px; height: 26px; left: 5px; } .badge-right { width: 26px; height: 26px; right: 5px; } } /* ========================================================= STATS ========================================================= */ .oper_card_stats { display: flex; align-items: center; width: 100%; margin-top: auto; } .oper_stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; } .oper_stat_value { display: flex; align-items: center; gap: 4px; font-size: 18px; font-weight: 700; color: #111827; margin: 0; } .oper_stat_label { font-size: 14px; color: #9ca3af; margin: 0; } .oper_stat_divider { width: 1px; height: 34px; background: #e5e7eb; } @media (max-width: 1200px) { .oper_stat_value { font-size: 16px; } .oper_stat_label { font-size: 13px; } } @media (max-width: 1024px) { .oper_stat_value { font-size: 15px; } .oper_stat_label { font-size: 12px; } .oper_stat_divider { height: 28px; } } @media (max-width: 860px) { .oper_stat_value { font-size: 13px; } .oper_stat_label { font-size: 11px; } .oper_stat_divider { height: 24px; } } @media (max-width: 768px) { .oper_stat_value { font-size: 12px; } .oper_stat_label { font-size: 10px; } .oper_stat_divider { height: 22px; } } @media (max-width: 540px) { .oper_stat_value { font-size: 15px; } .oper_stat_label { font-size: 12px; } .oper_stat_divider { height: 28px; } } @media (max-width: 480px) { .oper_stat_value { font-size: 14px; } .oper_stat_label { font-size: 11px; } .oper_stat_divider { height: 26px; } } @media (max-width: 360px) { .oper_stat_value { font-size: 12px; } .oper_stat_label { font-size: 10px; } .oper_stat_divider { height: 20px; } } /* ========================================================= CTA ========================================================= */ .oper_card_cta { position: absolute; top: 92%; left: 0; right: 0; width: 100%; transform: translateY(calc(-66% + 10px)); z-index: 1; background-image: linear-gradient(90deg, #A459FF, #FE3DFC); border-bottom-right-radius: 25px; border-bottom-left-radius: 25px; padding-top: 42px; padding-right: 5px; padding-bottom: 12px; padding-left: 5px; display: flex; justify-content: center; pointer-events: none; transition: transform 0.3s ease-out; } .oper_card_wrap:hover .oper_card_cta { transform: translateY(0); pointer-events: all; } .oper_card_cta a { cursor: pointer; font-size: 1.2rem; color: #ffffff; font-family: "Inter"; font-weight: 500; line-height: 1.8rem; border: 1px solid #FFFFFF66; border-radius: 50px; padding: 6px 20px; box-shadow: 0 4px 4px 0 #875FB780; text-decoration: none; display: inline-block; transition: background 0.25s ease, box-shadow 0.25s ease; } .oper_card_cta a:hover { background: rgba(255,255,255,0.15); box-shadow: 0 6px 16px 0 #875FB7aa; border-color: #ffffff; } @media (max-width: 1640px) { .oper_card_cta a { font-size: 1.15rem; padding: 6px 18px; } } @media (max-width: 1440px) { .oper_card_cta a { font-size: 1.1rem; padding: 6px 17px; } } @media (max-width: 1200px) { .oper_card_cta a { font-size: 1.05rem; padding: 5px 16px; } } @media (max-width: 1024px) { .oper_card_cta a { font-size: 1rem; padding: 5px 15px; line-height: 1.6rem; } } @media (max-width: 860px) { .oper_card_cta a { font-size: 0.85rem; padding: 5px 12px; line-height: 1.5rem; } } @media (max-width: 768px) { .oper_card_cta a { font-size: 0.8rem; padding: 4px 11px; line-height: 1.5rem; } } @media (max-width: 540px) { .oper_card_cta a { font-size: 0.95rem; padding: 5px 16px; line-height: 1.5rem; } } @media (max-width: 480px) { .oper_card_cta a { font-size: 0.9rem; padding: 4px 14px; line-height: 1.4rem; } } @media (max-width: 360px) { .oper_card_cta a { font-size: 0.8rem; padding: 3px 10px; line-height: 1.3rem; } } /* ========================================================= NO RESULTS ========================================================= */ #hr-no-results { display: none; text-align: center; padding: 60px 20px; color: #6b7280; } #hr-no-results h3 { font-size: 20px; font-weight: 600; margin: 0; } /* ========================================================= LOAD MORE ========================================================= */ #hr-load-more-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 80px; padding-bottom: 32px; } #hr-load-more { padding: 12px 40px; background-image: linear-gradient(90deg, #A459FF, #FE3DFC); color: #ffffff; font-size: 15px; font-weight: 600; border: none; border-radius: 50px; cursor: pointer; box-shadow: 0 4px 16px rgba(164,89,255,0.35); transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; display: none; } #hr-load-more:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(164,89,255,0.45); } #hr-load-more:active { transform: translateY(0); } #hr-profile-count { font-size: 13px; color: #9ca3af; margin: 0; } /* ========================================================= DESKTOP ========================================================= */ @media (min-width: 769px) { /* Never show overlay on desktop */ .hr-drawer-overlay, .hr-drawer-overlay.is-open { display: none !important; } /* Desktop drawer simply expands below search */ .hr-filter-drawer { position: relative; display: none; right: auto; top: auto; width: 100%; max-width: none; height: auto; background: transparent; box-shadow: none; overflow: visible; } .hr-filter-drawer.is-open { display: block; } }
Warning: Cannot modify header information - headers already sent by (output started at /var/www/offers.resourceinn.com/wp-content/themes/bricks-child/inc/hr-meta-boxes.php:1) in /var/www/offers.resourceinn.com/wp-content/plugins/seo-by-rank-math/includes/modules/sitemap/abstract-xml.php on line 66

Warning: Cannot modify header information - headers already sent by (output started at /var/www/offers.resourceinn.com/wp-content/themes/bricks-child/inc/hr-meta-boxes.php:1) in /var/www/offers.resourceinn.com/wp-content/plugins/seo-by-rank-math/includes/modules/sitemap/abstract-xml.php on line 69

Warning: Cannot modify header information - headers already sent by (output started at /var/www/offers.resourceinn.com/wp-content/themes/bricks-child/inc/hr-meta-boxes.php:1) in /var/www/offers.resourceinn.com/wp-content/plugins/seo-by-rank-math/includes/modules/sitemap/abstract-xml.php on line 69

Warning: Cannot modify header information - headers already sent by (output started at /var/www/offers.resourceinn.com/wp-content/themes/bricks-child/inc/hr-meta-boxes.php:1) in /var/www/offers.resourceinn.com/wp-content/plugins/seo-by-rank-math/includes/modules/sitemap/abstract-xml.php on line 69

Warning: Cannot modify header information - headers already sent by (output started at /var/www/offers.resourceinn.com/wp-content/themes/bricks-child/inc/hr-meta-boxes.php:1) in /var/www/offers.resourceinn.com/wp-content/plugins/seo-by-rank-math/includes/modules/sitemap/abstract-xml.php on line 69

Warning: Cannot modify header information - headers already sent by (output started at /var/www/offers.resourceinn.com/wp-content/themes/bricks-child/inc/hr-meta-boxes.php:1) in /var/www/offers.resourceinn.com/wp-content/plugins/seo-by-rank-math/includes/modules/sitemap/abstract-xml.php on line 69
https://resourceinn.com/post-sitemap.xml 2026-05-23T14:00:26+00:00 https://resourceinn.com/page-sitemap.xml 2026-07-06T08:34:33+00:00 https://resourceinn.com/case_study-sitemap.xml 2026-07-03T13:55:22+00:00 https://resourceinn.com/glossary-sitemap.xml 2026-03-10T06:21:45+00:00