/*
Theme Name: Dlehi Custom
Author: Karan
Description: Custom theme for HR Software Delhi
Version: 1.0
*/
/* =========================================
   1. GLOBAL VARIABLES & RESET
========================================= */
:root {
    --brand-orange: #ea580c;
    --brand-orange-light: #fff7ed;
    --brand-orange-border: #fed7aa;
    --brand-dark: #0f172a;
    --text-main: #475569;
    --text-heading: #1e293b;
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.09);
    --transition: all 0.3s ease;
}
#hrp * { box-sizing: border-box; margin: 0; padding: 0; }
#hrp { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--white); color: var(--brand-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
#hrp a { text-decoration: none; }
@keyframes hrpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
@keyframes hrbounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
/* =========================================
   2. TYPOGRAPHY & BUTTONS
========================================= */
.hrp-h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px; }
.hrp-h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.hrp-h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.hrp-p-lead { font-size: 18px; color: var(--text-main); line-height: 1.8; margin-bottom: 32px; }
.hrp-p { font-size: 15px; color: var(--text-main); line-height: 1.75; }
.hrp-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-orange); color: var(--white); font-weight: 700; padding: 15px 28px; border-radius: 12px; font-size: 15px; box-shadow: 0 10px 28px rgba(234,88,12,.28); transition: var(--transition); }
.hrp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(234,88,12,.4); color: var(--white); }
.hrp-btn-outline { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--text-heading); font-weight: 700; padding: 15px 28px; border-radius: 12px; font-size: 15px; border: 2px solid var(--border-light); transition: var(--transition); }
.hrp-btn-outline:hover { border-color: var(--brand-dark); }
.hrp-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-orange-light); border: 1px solid var(--brand-orange-border); border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 700; color: #9a3412; }
/* =========================================
   3. LAYOUT & GRIDS
========================================= */
.hrp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hrp-container-sm { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.hrp-section { padding: 96px 0; }
.hrp-section-light { background: var(--bg-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.hrp-section-dark { background: var(--brand-dark); color: var(--white); }
.hrp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hrp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hrp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.hrp-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 20px; padding: 32px; transition: var(--transition); height: 100%; }
.hrp-card:hover { box-shadow: var(--shadow-sm); border-color: var(--brand-orange-border); }
.hrp-icon-box { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
@media(max-width: 900px) {
    .hrp-grid-2 { grid-template-columns: 1fr !important; gap: 40px !important; }
    .hrp-grid-3, .hrp-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media(max-width: 600px) { .hrp-grid-3, .hrp-grid-4 { grid-template-columns: 1fr !important; } }
/* =========================================
   4. HOMEPAGE SPECIFIC
========================================= */
.hrtime { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center; margin-bottom: 52px; position: relative; z-index: 1; }
@media(max-width: 900px) {
  .hrtime { grid-template-columns: 56px 1fr !important; }
  .hrtleft { text-align: left !important; padding-right: 0 !important; padding-left: 16px !important; }
  .hrtright { padding-left: 16px !important; }
  .hrtspacer { display: none !important; }
}
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
.hrp-sticky-wrapper { display: flex; align-items: flex-start; gap: 64px; position: relative; }
.hrp-sticky-left { width: 50%; padding: 48px 0 128px 0; }
.hrp-content-block { margin-bottom: 128px; }
.hrp-content-block:last-child { margin-bottom: 0; }
.hrp-sticky-right { width: 50%; position: sticky; top: 120px; height: 600px; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid #1e293b; background-color: #0f172a; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.hrp-sticky-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 400px; height: 400px; background: linear-gradient(to top right,rgba(249,115,22,0.3),rgba(59,130,246,0.2)); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hrp-mockup-1 { position: absolute; top: 64px; right: 32px; width: 100%; max-width: 340px; background: #ffffff; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 20px 50px rgba(0,0,0,0.4); padding: 20px; z-index: 10; transform: rotateY(-10deg) rotateX(5deg); transition: transform 0.7s ease; }
.hrp-mockup-1:hover { transform: rotateY(0) rotateX(0) translateY(-8px); }
.hrp-mockup-2 { position: absolute; bottom: 64px; left: 32px; width: 100%; max-width: 380px; background: rgba(30,41,59,0.9); backdrop-filter: blur(16px); border-radius: 16px; border: 1px solid #475569; padding: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); z-index: 20; transform: rotateY(10deg) rotateX(-5deg); transition: transform 0.7s ease; }
.hrp-mockup-2:hover { transform: rotateY(0) rotateX(0) translateY(-8px); }
.hrp-explore-link { display: inline-flex; align-items: center; font-weight: 700; color: #ea580c; text-decoration: none; font-size: 16px; margin-top: 8px; transition: color 0.3s; }
.hrp-explore-link:hover { color: #c2410c; }
.hrp-explore-link svg { margin-left: 8px; transition: transform 0.3s; width: 20px; height: 20px; }
.hrp-explore-link:hover svg { transform: translateX(4px); }
@media(max-width: 900px) {
    .hrp-sticky-wrapper { flex-direction: column; gap: 32px; }
    .hrp-sticky-left { width: 100%; padding: 48px 0; }
    .hrp-content-block { margin-bottom: 64px; }
    .hrp-sticky-right { display: none; }
}
/* =========================================
   5. HEADER & MEGA MENU
========================================= */
.hrp-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--border-light); }
.hrp-header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hrp-nav-list { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; height: 100%; }
.hrp-nav-item { position: relative; display: flex; align-items: center; height: 100%; }
.hrp-nav-link { font-weight: 700; color: var(--text-heading); font-size: 15px; display: flex; align-items: center; gap: 6px; cursor: pointer; transition: color 0.2s; text-decoration: none; }
.hrp-nav-link:hover { color: var(--brand-orange); }
.hrp-nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; color: var(--text-main); }
.hrp-nav-item:hover .hrp-nav-link svg { transform: rotate(180deg); color: var(--brand-orange); }
.hrp-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--white); border: 1px solid var(--border-light); border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transition: all 0.2s ease; cursor: default; }
.hrp-nav-item:hover .hrp-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hrp-drop-product { width: 680px; padding: 0; }
.hrp-drop-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
.hrp-drop-item { display: flex; align-items: center; gap: 16px; padding: 8px; border-radius: 12px; transition: background 0.2s; text-decoration: none; }
.hrp-drop-item:hover { background: var(--bg-light); }
.hrp-drop-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hrp-drop-title { font-weight: 800; color: var(--text-heading); font-size: 14px; margin-bottom: 2px; }
.hrp-drop-desc { font-size: 13px; color: var(--text-main); }
.hrp-drop-footer { background: var(--bg-light); padding: 20px 24px; border-top: 1px solid var(--border-light); border-radius: 0 0 16px 16px; display: flex; justify-content: space-between; align-items: center; text-decoration: none; transition: background 0.2s; }
.hrp-drop-footer:hover { background: #f1f5f9; }
.hrp-drop-resources { width: 600px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; padding: 24px; left: 0; transform: translateX(-20%) translateY(10px); }
.hrp-nav-item:hover .hrp-drop-resources { transform: translateX(-20%) translateY(0); }
.hrp-drop-col-title { font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.hrp-drop-link { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; color: var(--text-heading); margin-bottom: 16px; transition: color 0.2s; text-decoration: none; }
.hrp-drop-link:hover { color: var(--brand-orange); }
.hrp-resource-card { border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; transition: border-color 0.2s; text-decoration: none; }
.hrp-resource-card:hover { border-color: var(--brand-orange-border); background: #fffcf8; }
.hrp-drop-company { width: 220px; padding: 16px; }
.hrp-header-cta { display: flex; align-items: center; gap: 24px; }
.hrp-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text-heading); font-size: 15px; text-decoration: none; transition: color 0.2s; }
.hrp-phone:hover { color: var(--brand-orange); }
@media(max-width: 900px) { .hrp-nav-list, .hrp-phone { display: none; } }
/* =========================================
   6. FOOTER
========================================= */
.hrp-footer { background-color: var(--white); color: var(--text-main); padding: 80px 0 32px; border-top: 1px solid var(--border-light); font-family: 'Inter', sans-serif; }
.hrp-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.hrp-footer-col h4 { color: var(--text-heading); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 24px; }
.hrp-footer-desc { font-size: 14px; color: var(--text-main); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.hrp-footer-contact { font-size: 14px; font-weight: 700; color: var(--text-heading); display: flex; flex-direction: column; gap: 6px; }
.hrp-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.hrp-footer-link { color: var(--text-main); text-decoration: none; font-size: 14px; transition: color 0.2s; display: inline-flex; align-items: center; }
.hrp-footer-link:hover { color: var(--brand-orange); }
.hrp-footer-link-highlight { color: var(--brand-orange); font-weight: 700; }
.hrp-footer-link-highlight::after { content: ''; display: inline-block; width: 6px; height: 6px; background-color: var(--brand-orange); border-radius: 50%; margin-left: 8px; }
.hrp-footer-bottom { border-top: 1px solid var(--border-light); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.hrp-footer-copy { color: var(--text-main); font-size: 14px; margin: 0; }
@media(max-width: 900px) { .hrp-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media(max-width: 600px) { .hrp-footer-grid { grid-template-columns: 1fr; } .hrp-footer-bottom { flex-direction: column; text-align: center; justify-content: center; } }

/* =========================================
   7. BLOG HUB — bl- prefix
========================================= */
.bl-wrap{overflow-x:hidden;color:var(--text-heading);line-height:1.6;font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;}
.bl-wrap a{text-decoration:none;}
.bl-con{max-width:1160px;margin:0 auto;padding:0 24px;}
@keyframes blPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.3)}}
.bl-eyebrow{display:inline-flex;align-items:center;gap:7px;background:var(--brand-orange-light);border:1px solid var(--brand-orange-border);color:#9a3412;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;padding:5px 16px;border-radius:999px;margin-bottom:16px;}
.bl-eyebrow::before{content:'';width:7px;height:7px;border-radius:50%;background:var(--brand-orange);animation:blPulse 2s infinite;}
.bl-h1{font-size:clamp(2.2rem,4.5vw,3.4rem);font-weight:900;line-height:1.1;color:var(--text-heading);letter-spacing:-0.03em;}
.bl-h1-accent{color:var(--brand-orange);}
.bl-h2{font-size:clamp(1.5rem,2.8vw,2rem);font-weight:800;line-height:1.2;color:var(--text-heading);letter-spacing:-0.02em;}
.bl-lead{font-size:17px;color:var(--text-main);line-height:1.8;}
.bl-hero-sub{max-width:580px;margin:20px auto 0;}
.bl-btn{display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:15px;padding:14px 28px;border-radius:12px;border:none;cursor:pointer;transition:all .25s ease;white-space:nowrap;text-decoration:none;}
.bl-btn-primary{background:var(--brand-orange);color:#fff;box-shadow:0 8px 32px rgba(234,88,12,0.25);}
.bl-btn-primary:hover{background:#c2410c;transform:translateY(-2px);color:#fff;}
.bl-btn-outline{background:transparent;color:#fff;border:2px solid rgba(255,255,255,0.25);}
.bl-btn-outline:hover{background:rgba(255,255,255,0.08);color:#fff;}
.bl-reveal{opacity:0;transform:translateY(20px);transition:opacity .5s ease,transform .5s ease;}
.bl-reveal.visible{opacity:1;transform:translateY(0);}
.bl-d1{transition-delay:.05s}.bl-d2{transition-delay:.12s}.bl-d3{transition-delay:.19s}.bl-d4{transition-delay:.26s}
.bl-hero{background:var(--white);padding:64px 0 56px;border-bottom:1px solid var(--border-light);text-align:center;}
.bl-tabs-bar{background:var(--white);border-bottom:1px solid var(--border-light);position:sticky;top:0;z-index:90;box-shadow:0 2px 12px rgba(0,0,0,0.04);}
.bl-tabs-inner{display:flex;align-items:center;gap:6px;overflow-x:auto;padding:14px 24px;max-width:1160px;margin:0 auto;scrollbar-width:none;}
.bl-tabs-inner::-webkit-scrollbar{display:none;}
.bl-tab{display:inline-flex;align-items:center;gap:6px;padding:8px 18px;border-radius:999px;cursor:pointer;font-size:13px;font-weight:700;white-space:nowrap;border:1.5px solid var(--border-light);color:var(--text-main);background:var(--white);transition:all .2s;line-height:1;font-family:'Inter',-apple-system,sans-serif;}
.bl-tab:hover{border-color:var(--brand-orange-border);color:var(--brand-orange);background:var(--brand-orange-light);}
.bl-tab.active{background:var(--brand-orange);border-color:var(--brand-orange);color:#fff;}
.bl-tab-count{font-size:11px;opacity:.75;font-weight:600;}
.bl-featured{padding:56px 0 0;background:var(--bg-light);}
.bl-latest-label{margin-bottom:20px;}
.bl-feat-card{background:var(--white);border:2px solid var(--brand-orange-border);border-radius:24px;overflow:hidden;display:grid;grid-template-columns:1fr 1fr;transition:all .3s;}
.bl-feat-card:hover{box-shadow:0 20px 60px rgba(234,88,12,0.1);transform:translateY(-4px);}
.bl-feat-img{background:linear-gradient(135deg,var(--brand-orange) 0%,#c2410c 100%);min-height:280px;display:flex;align-items:center;justify-content:center;padding:40px;position:relative;overflow:hidden;}
.bl-feat-img::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 80% 20%,rgba(255,255,255,0.12),transparent 60%);}
.bl-feat-img-icon{font-size:80px;position:relative;z-index:1;}
.bl-feat-img-photo{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.bl-feat-body{padding:40px;}
.bl-feat-cat{display:inline-flex;align-items:center;gap:5px;background:var(--brand-orange-light);border:1px solid var(--brand-orange-border);color:var(--brand-orange);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:1px;padding:4px 12px;border-radius:999px;margin-bottom:16px;}
.bl-feat-title{font-size:22px;font-weight:900;color:var(--text-heading);line-height:1.3;margin-bottom:14px;display:block;}
.bl-feat-title:hover{color:var(--brand-orange);}
.bl-feat-excerpt{font-size:14px;color:var(--text-main);line-height:1.75;margin-bottom:22px;}
.bl-feat-meta{display:flex;align-items:center;gap:16px;font-size:12px;color:#94a3b8;flex-wrap:wrap;}
.bl-feat-read{font-size:13px;font-weight:800;color:var(--brand-orange);display:inline-flex;align-items:center;gap:5px;margin-top:16px;}
.bl-feat-read:hover{color:#c2410c;}
.bl-posts-sec{padding:48px 0 72px;background:var(--bg-light);}
.bl-posts-layout{display:grid;grid-template-columns:1fr 280px;gap:40px;align-items:start;}
.bl-grid-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px;}
.bl-grid-count{font-size:13px;color:#94a3b8;font-weight:600;}
.bl-posts-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.bl-post-card{background:var(--white);border:1px solid var(--border-light);border-radius:18px;overflow:hidden;transition:all .3s;display:flex;flex-direction:column;}
.bl-post-card:hover{border-color:var(--brand-orange-border);box-shadow:0 10px 32px rgba(234,88,12,0.08);transform:translateY(-4px);}
.bl-post-thumb{height:160px;display:flex;align-items:center;justify-content:center;font-size:40px;position:relative;overflow:hidden;}
.bl-post-thumb-img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.bl-post-body{padding:20px;flex:1;display:flex;flex-direction:column;gap:10px;}
.bl-post-cat{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:1px;padding:3px 10px;border-radius:999px;display:inline-block;}
.bl-post-title{font-size:15px;font-weight:700;color:var(--text-heading);line-height:1.4;flex:1;display:block;}
.bl-post-title:hover{color:var(--brand-orange);}
.bl-post-excerpt{font-size:12px;color:var(--text-main);line-height:1.65;}
.bl-post-footer{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid var(--border-light);font-size:11px;color:#94a3b8;}
.bl-post-read-link{font-size:12px;font-weight:800;color:var(--brand-orange);display:inline-flex;align-items:center;gap:4px;}
.bl-post-read-link:hover{color:#c2410c;}
.bl-no-results{padding:48px 24px;text-align:center;color:var(--text-main);font-size:15px;grid-column:1/-1;}
.bl-no-results-sub{font-size:13px;color:#94a3b8;display:block;margin-top:6px;}
.bl-sidebar{display:flex;flex-direction:column;gap:20px;position:sticky;top:72px;}
.bl-sidebar-widget{background:var(--white);border:1px solid var(--border-light);border-radius:16px;padding:22px;}
.bl-sidebar-title{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1.5px;color:#94a3b8;margin-bottom:16px;display:block;}
.bl-sidebar-link{display:flex;align-items:flex-start;gap:10px;padding:10px 0;border-bottom:1px solid var(--border-light);font-size:13px;color:var(--text-heading);font-weight:600;transition:color .2s;}
.bl-sidebar-link:last-child{border-bottom:none;padding-bottom:0;}
.bl-sidebar-link:hover{color:var(--brand-orange);}
.bl-sidebar-link-dot{width:6px;height:6px;border-radius:50%;background:var(--brand-orange);margin-top:6px;flex-shrink:0;}
.bl-cta-widget{background:linear-gradient(135deg,var(--brand-orange) 0%,#c2410c 100%);border:none;color:#fff;text-align:center;}
.bl-cta-widget .bl-sidebar-title{color:rgba(255,255,255,0.7);}
.bl-cta-widget-h{font-size:17px;font-weight:900;color:#fff;margin-bottom:10px;line-height:1.3;}
.bl-cta-widget-p{font-size:13px;color:rgba(255,255,255,.8);margin-bottom:18px;line-height:1.6;}
.bl-cta-widget-btn{display:block;background:#fff;color:var(--brand-orange);font-size:13px;font-weight:800;padding:11px 18px;border-radius:10px;transition:all .2s;text-decoration:none;}
.bl-cta-widget-btn:hover{background:var(--brand-orange-light);color:#c2410c;}
.bl-cta{background:linear-gradient(135deg,#0d1b2a 0%,#1a2e44 100%);padding:72px 0;text-align:center;position:relative;overflow:hidden;}
.bl-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(234,88,12,0.15),transparent 65%);}
.bl-cta-inner{position:relative;z-index:1;}
.bl-cta-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(234,88,12,0.2);border:1px solid rgba(234,88,12,0.35);color:#fdba74;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;padding:5px 16px;border-radius:999px;margin-bottom:16px;}
.bl-cta-h2{font-size:clamp(1.5rem,3vw,2.2rem);font-weight:800;color:#fff;max-width:580px;margin:14px auto 0;line-height:1.25;}
.bl-cta-h2-accent{color:#f97316;}
.bl-cta-lead{color:#94a3b8;font-size:16px;max-width:480px;margin:18px auto 0;line-height:1.8;}
.bl-cta-btns{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:28px;flex-wrap:wrap;}
.bl-cat-payroll{background:#fff7ed;color:#c2410c;}
.bl-cat-compliance{background:#fef2f2;color:#dc2626;}
.bl-cat-recruitment{background:#eff6ff;color:#2563eb;}
.bl-cat-attendance{background:#f0fdf4;color:#16a34a;}
.bl-cat-performance{background:#fdf4ff;color:#7c3aed;}
.bl-cat-hr{background:#f8fafc;color:#475569;}
.bl-cat-leave{background:#ecfdf5;color:#059669;}
.bl-cat-expense{background:#fff7ed;color:#ea580c;}
@media(max-width:1000px){
    .bl-posts-layout{grid-template-columns:1fr;}
    .bl-sidebar{position:static;display:grid;grid-template-columns:1fr 1fr;gap:16px;}
    .bl-feat-card{grid-template-columns:1fr;}
    .bl-feat-img{min-height:180px;}
    .bl-h1{font-size:2rem;}
}
@media(max-width:700px){
    .bl-posts-grid{grid-template-columns:1fr;}
    .bl-con{padding:0 16px;}
    .bl-sidebar{grid-template-columns:1fr;}
    .bl-cta-btns{flex-direction:column;align-items:stretch;}
    .bl-cta-btns a{justify-content:center;}
    .bl-grid-header{flex-direction:column;align-items:flex-start;gap:6px;}
}