/***********************/

.careerfy-subheader.careerfy-subheader-with-bg, .careerfy-breadcrumb{
    display:none !important;
}

.single-post .breadcrumb
{
    background-color: #f5f5f500;
}
/***********************/



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
    --ink: #0C1B2E; --ink-mid: #1C3050; --slate: #445569;
    --muted: #7A8FA6; --border: #E4EBF0; --bg: #F7F9FB; --white: #FFFFFF;
    --green: #00B574; --green-dim: #009960; --green-pale: #E8F8F2; --gold: #C9A84C;
    --shadow-sm: 0 4px 16px rgba(12,27,46,.07); --shadow-md: 0 12px 40px rgba(12,27,46,.09);
    --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 30px;
}
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media(max-width:700px){ .container { padding: 0 20px; } }

/* HEADER */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-box { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.logo-txt { font-weight: 800; font-size: .9rem; color: var(--ink); line-height: 1.1; }
.logo-txt span { color: var(--green); }
nav a { padding: 7px 13px; border-radius: 7px; font-size: .82rem; font-weight: 600; color: var(--slate); text-decoration: none; transition: all .2s; }
nav a:hover { color: var(--green); }
.nav-btns { display: flex; gap: 9px; }
.n-ghost { padding: 8px 18px; border-radius: 8px; border: 1.5px solid var(--border); background: transparent; font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--slate); cursor: pointer; }
.n-solid { padding: 8px 18px; border-radius: 8px; background: var(--ink); color: #fff; border: none; font-family: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.n-solid:hover { background: var(--green); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.98); z-index: 199; flex-direction: column; padding: 32px 28px; transform: translateX(100%); transition: transform .35s; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a { display: block; padding: 18px 4px; font-size: 1.1rem; font-weight: 600; color: var(--ink); text-decoration: none; }
@media(max-width:768px){ .hamburger { display: flex; } .mobile-nav { display: flex; } nav { display: none; } .nav-btns { display: none; } }

/* ARTICLE HERO */
.article-hero { background: var(--ink); padding: 110px 0 60px; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 48px 48px; }
.hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,181,116,.1) 0%, transparent 65%); right: -100px; top: -80px; }
.article-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: #3A5568; margin-bottom: 18px; }
.breadcrumb a { color: #3A5568; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: #2A3F56; }
.article-cat { display: inline-flex; align-items: center; gap: 7px; background: rgba(0,181,116,.15); border: 1px solid rgba(0,181,116,.25); border-radius: 100px; padding: 4px 14px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.article-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 18px; letter-spacing: -.02em; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: #3A5568; }
.article-meta-item strong { color: #7A9BBE; }

/* ARTICLE LAYOUT */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 64px 0 80px; align-items: start; }
.article-body { }
.article-body p { font-size: .95rem; color: var(--slate); line-height: 1.85; margin-bottom: 20px; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--ink); margin: 36px 0 14px; letter-spacing: -.02em; line-height: 1.15; }
.article-body h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 24px 0 10px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--green); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }

/* Job Card */
.job-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px; transition: all .25s; position: relative; overflow: hidden; }
.job-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform .3s; }
.job-card:hover { border-color: transparent; box-shadow: var(--shadow-md); }
.job-card:hover::after { transform: scaleY(1); }
.job-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 6px; }
.job-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.job-tag { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; font-size: .7rem; font-weight: 600; color: var(--slate); }
.job-tag.green { background: var(--green-pale); border-color: rgba(0,181,116,.2); color: var(--green-dim); }
.job-desc { font-size: .87rem; color: var(--muted); line-height: 1.72; margin-bottom: 14px; }
.job-cta { display: inline-flex; align-items: center; gap: 7px; background: var(--ink); color: #fff; border-radius: var(--r-sm); padding: 9px 18px; font-size: .78rem; font-weight: 700; text-decoration: none; transition: all .2s; }
.job-cta:hover { background: var(--green); text-decoration: none; }

/* Callout boxes */
.callout { border-radius: var(--r-md); padding: 20px 22px; margin: 24px 0; }
.callout.green { background: var(--green-pale); border: 1.5px solid rgba(0,181,116,.2); }
.callout.ink { background: var(--ink); }
.callout-title { font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.callout.ink .callout-title { color: #fff; }
.callout-body { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.callout.ink .callout-body { color: #4A6680; }

/* SIDEBAR */
.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.sidebar-card h3 { font-weight: 700; font-size: .85rem; color: var(--ink); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc-list a { font-size: .8rem; color: var(--slate); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.toc-list a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.toc-list a:hover { color: var(--green); }
.sidebar-cta-card { background: var(--ink); border-radius: var(--r-lg); padding: 22px; text-align: center; }
.sidebar-cta-card h3 { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 8px; border: none; }
.sidebar-cta-card p { font-size: .78rem; color: #3A5568; line-height: 1.6; margin-bottom: 14px; }
.sidebar-cta-btn { display: block; background: var(--green); color: #fff; border-radius: var(--r-sm); padding: 11px 16px; font-size: .8rem; font-weight: 700; text-decoration: none; transition: background .2s; }
.sidebar-cta-btn:hover { background: var(--green-dim); text-decoration: none; }
.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item { display: flex; gap: 10px; align-items: flex-start; text-decoration: none; }
.related-ico { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.related-title { font-size: .78rem; font-weight: 700; color: var(--ink); line-height: 1.35; transition: color .2s; }
.related-item:hover .related-title { color: var(--green); }
.related-date { font-size: .68rem; color: var(--muted); margin-top: 2px; }

/* FOOTER */
footer { background: var(--ink); padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: #3A5568; font-size: .82rem; line-height: 1.7; margin: 14px 0 20px; }
.footer-socials { display: flex; gap: 9px; }
.soc { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .8rem; cursor: pointer; transition: all .2s; text-decoration: none; color: #4A6680; font-weight: 700; }
.soc:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col a { display: block; font-size: .82rem; color: #3A5568; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: #2A3F56; }
.footer-bottom span { color: var(--green); }
.wa-btn { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; border-radius: 100px; padding: 14px 22px 14px 16px; text-decoration: none; font-weight: 700; font-size: .85rem; box-shadow: 0 8px 32px rgba(37,211,102,.4); transition: all .25s; }
.wa-btn:hover { transform: translateY(-3px); }
.wa-ico { width: 32px; height: 32px; }
.wa-sub { font-size: .7rem; opacity: .85; display: block; margin-top: 1px; }
.btt { position: fixed; bottom: 28px; left: 28px; z-index: 998; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(12,27,46,.25); opacity: 0; pointer-events: none; transition: all .3s; }
.btt.visible { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--green); }
@media(max-width:900px){ .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px){ .footer-grid { grid-template-columns: 1fr; } }








*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
    --ink: #0C1B2E; --slate: #445569; --muted: #7A8FA6; --border: #E4EBF0; --bg: #F7F9FB; --white: #FFFFFF;
    --green: #00B574; --green-dim: #009960; --green-pale: #E8F8F2; --gold: #C9A84C;
    --shadow-sm: 0 4px 16px rgba(12,27,46,.07); --shadow-md: 0 12px 40px rgba(12,27,46,.09);
    --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 30px;
}
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media(max-width:700px){ .container { padding: 0 20px; } }
header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-box { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.logo-txt { font-weight: 800; font-size: .9rem; color: var(--ink); line-height: 1.1; }
.logo-txt span { color: var(--green); }
nav a { padding: 7px 13px; border-radius: 7px; font-size: .82rem; font-weight: 600; color: var(--slate); text-decoration: none; transition: color .2s; }
nav a:hover { color: var(--green); }
.nav-btns { display: flex; gap: 9px; }
.n-ghost { padding: 8px 18px; border-radius: 8px; border: 1.5px solid var(--border); background: transparent; font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--slate); cursor: pointer; }
.n-solid { padding: 8px 18px; border-radius: 8px; background: var(--ink); color: #fff; border: none; font-family: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.n-solid:hover { background: var(--green); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.98); z-index: 199; flex-direction: column; padding: 32px 28px; transform: translateX(100%); transition: transform .35s; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a { display: block; padding: 18px 4px; font-size: 1.1rem; font-weight: 600; color: var(--ink); text-decoration: none; }
@media(max-width:768px){ .hamburger { display: flex; } .mobile-nav { display: flex; } nav { display: none; } .nav-btns { display: none; } }
.article-hero { background: var(--ink); padding: 110px 0 60px; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 48px 48px; }
.hero-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(0,181,116,.1) 0%, transparent 65%); right: -80px; top: -80px; }
.article-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: #3A5568; margin-bottom: 18px; }
.breadcrumb a { color: #3A5568; text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.article-cat { display: inline-flex; align-items: center; gap: 7px; background: rgba(0,181,116,.15); border: 1px solid rgba(0,181,116,.25); border-radius: 100px; padding: 4px 14px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.article-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 18px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-meta-item { font-size: .78rem; color: #3A5568; }
.article-meta-item strong { color: #7A9BBE; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 64px 0 80px; align-items: start; }
.article-body p { font-size: .95rem; color: var(--slate); line-height: 1.85; margin-bottom: 20px; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--ink); margin: 36px 0 14px; line-height: 1.15; }
.article-body h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 22px 0 10px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--green); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body ul { margin: 0 0 20px 20px; }
.article-body ul li { font-size: .93rem; color: var(--slate); line-height: 1.75; margin-bottom: 8px; }
.step-card { display: flex; gap: 18px; align-items: flex-start; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 22px; margin-bottom: 14px; transition: all .25s; }
.step-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-title { font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: 6px; }
.step-body { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.callout { border-radius: var(--r-md); padding: 20px 22px; margin: 24px 0; }
.callout.green { background: var(--green-pale); border: 1.5px solid rgba(0,181,116,.2); }
.callout.red { background: #FFF0F0; border: 1.5px solid rgba(220,53,69,.15); }
.callout.ink { background: var(--ink); }
.callout-title { font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.callout.ink .callout-title { color: #fff; }
.callout.red .callout-title { color: #c0392b; }
.callout-body { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.callout.ink .callout-body { color: #4A6680; }
.qs-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.q-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); font-size: .87rem; color: var(--slate); }
.q-ico { font-size: 1rem; flex-shrink: 0; }
.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.sidebar-card h3 { font-weight: 700; font-size: .85rem; color: var(--ink); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc-list a { font-size: .8rem; color: var(--slate); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.toc-list a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.toc-list a:hover { color: var(--green); }
.sidebar-cta-card { background: var(--ink); border-radius: var(--r-lg); padding: 22px; text-align: center; }
.sidebar-cta-card h3 { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 8px; border: none; padding-bottom: 0; }
.sidebar-cta-card p { font-size: .78rem; color: #3A5568; line-height: 1.6; margin-bottom: 14px; }
.sidebar-cta-btn { display: block; background: var(--green); color: #fff; border-radius: var(--r-sm); padding: 11px 16px; font-size: .8rem; font-weight: 700; text-decoration: none; }
.sidebar-cta-btn:hover { background: var(--green-dim); text-decoration: none; }
footer { background: var(--ink); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: #3A5568; font-size: .82rem; line-height: 1.7; margin: 14px 0 20px; }
.footer-socials { display: flex; gap: 9px; }
.soc { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .8rem; cursor: pointer; text-decoration: none; color: #4A6680; font-weight: 700; transition: all .2s; }
.soc:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col a { display: block; font-size: .82rem; color: #3A5568; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: #2A3F56; }
.footer-bottom span { color: var(--green); }
.wa-btn { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; border-radius: 100px; padding: 14px 22px 14px 16px; text-decoration: none; font-weight: 700; font-size: .85rem; box-shadow: 0 8px 32px rgba(37,211,102,.4); transition: all .25s; }
.wa-btn:hover { transform: translateY(-3px); }
.wa-ico { width: 32px; height: 32px; }
.wa-sub { font-size: .7rem; opacity: .85; display: block; margin-top: 1px; }
.btt { position: fixed; bottom: 28px; left: 28px; z-index: 998; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(12,27,46,.25); opacity: 0; pointer-events: none; transition: all .3s; }
.btt.visible { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--green); }
@media(max-width:900px){ .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px){ .footer-grid { grid-template-columns: 1fr; } }








