/*
 * Inamorai Core Style System
 */

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-semibold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Newsreader';
	src: url('../fonts/newsreader-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Newsreader';
	src: url('../fonts/newsreader-semibold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Newsreader';
	src: url('../fonts/newsreader-italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

:root {
	--coral: #FF7A9A;
	--magenta: #B5179E;
	--violet: #7B2CBF;
	--plum: #2A1A2E;
	--background: #FBF6F8;
	--card-bg: #FFFFFF;
	--border: #efe2ea;
	--text-main: #2A1A2E;
	--text-muted: #8a6f80;
	
	--green: #1f9d6b;
	--green-bg: #e6f7f0;
	--red: #d6456b;
	--red-bg: #fcf0f2;
	
	--gradient: linear-gradient(120deg, var(--coral), var(--magenta) 55%, var(--violet));
	--shadow: 0 8px 30px rgba(42, 26, 46, 0.04);
	--shadow-hover: 0 12px 40px rgba(42, 26, 46, 0.08);
	--transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--radius: 20px;
	--font-sans: 'Poppins', sans-serif;
	--font-serif: 'Newsreader', serif;
	--container-width: 1200px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-sans);
	color: var(--text-main);
	background: var(--background);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* Age Gate zero-CLS container */
#inamorai-age-gate {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(42, 26, 46, 0.96);
	backdrop-filter: blur(12px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

body.age-gate-active {
	overflow: hidden;
}

body.age-gate-active #inamorai-age-gate {
	opacity: 1;
	pointer-events: auto;
}

.age-gate-card {
	background: #fff;
	max-width: 500px;
	width: 90%;
	padding: 40px;
	border-radius: 24px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	transform: scale(0.95);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.age-gate-active .age-gate-card {
	transform: scale(1);
}

.age-gate-logo {
	width: 140px;
	height: auto;
	margin-bottom: 24px;
}

.age-gate-card h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--plum);
}

.age-gate-card p {
	font-size: 15px;
	color: var(--text-muted);
	margin-bottom: 30px;
}

.age-gate-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	border: none;
}

.btn-primary {
	background: var(--gradient);
	color: #fff;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(181, 23, 158, 0.3);
}

.btn-secondary {
	background: #f1e6ee;
	color: var(--plum);
}

.btn-secondary:hover {
	background: #efe2ea;
}

/* Cookie consent banner styling */
#inamorai-consent-banner {
	position: fixed;
	bottom: 24px;
	left: 24px;
	right: 24px;
	max-width: 600px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 20px 24px;
	box-shadow: 0 10px 40px rgba(42, 26, 46, 0.1);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

#inamorai-consent-banner.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.consent-text {
	font-size: 13px;
	color: var(--text-muted);
}

.consent-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.btn-sm {
	padding: 8px 18px;
	font-size: 12px;
}

/* Global Layout Grid */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header Navbar Styles */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 9999;
	padding: 16px 0;
}

.header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-link svg {
	height: 38px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 28px;
	list-style: none;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-main);
	font-size: 14px;
	font-weight: 500;
	transition: var(--transition);
}

.nav-menu a:hover {
	color: var(--magenta);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 24px;
}

/* FTC Disclosure Header */
.ftc-disclosure-top {
	background: #fbfbfb;
	border-bottom: 1px solid var(--border);
	padding: 8px 0;
	font-size: 11px;
	color: var(--text-muted);
	text-align: center;
}

/* Review Single Scorecard Section */
.scorecard-hero {
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	padding: 30px;
	margin: 30px 0;
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 30px;
}

.scorecard-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.scorecard-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	background: var(--gradient);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.scorecard-title-row {
	display: flex;
	align-items: center;
	gap: 15px;
}

.scorecard-logo {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	object-fit: cover;
	border: 1px solid var(--border);
}

.scorecard-title-row h1 {
	font-size: 28px;
	color: var(--plum);
	font-weight: 700;
}

.verdict-line {
	font-size: 16px;
	color: var(--text-muted);
	font-style: italic;
	font-family: var(--font-serif);
}

.spec-icons-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.spec-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f6f7f7;
	border: 1px solid var(--border);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
}

.scorecard-action {
	background: #fbf4f8;
	border: 1px dashed var(--magenta);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 15px;
}

.overall-circle {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
}

.overall-number {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.overall-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Modality Grid Icons */
.modalities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 12px;
	margin-top: 15px;
}

.modality-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}

.modality-item.active {
	border-color: var(--green);
	background: var(--green-bg);
	color: #0d5c3a;
}

.modality-item.inactive {
	border-color: var(--border);
	opacity: 0.6;
	text-decoration: line-through;
}

/* Layout for Single Companion Template */
.companion-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px;
	margin-top: 30px;
	align-items: start;
}

/* Sticky TOC Sidebar Navigation */
.toc-sidebar {
	position: sticky;
	top: 100px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px;
}

.toc-sidebar h3 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	margin-bottom: 15px;
	font-weight: 700;
}

.toc-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.toc-list a {
	text-decoration: none;
	font-size: 13px;
	color: var(--text-main);
	font-weight: 500;
	transition: var(--transition);
	display: block;
}

.toc-list a:hover,
.toc-list li.active a {
	color: var(--magenta);
	padding-left: 4px;
}

/* Editorial Body Typography */
.editorial-content {
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	padding: 40px;
	box-shadow: var(--shadow);
}

.editorial-content h2 {
	font-size: 22px;
	margin-top: 35px;
	margin-bottom: 15px;
	color: var(--plum);
	font-weight: 700;
	border-bottom: 2px solid var(--background);
	padding-bottom: 8px;
}

.editorial-content h2:first-of-type {
	margin-top: 0;
}

.editorial-content p {
	font-family: var(--font-serif);
	font-size: 17px;
	line-height: 1.7;
	color: var(--plum);
	margin-bottom: 24px;
}

/* Score Breakdown Grid */
.score-breakdown-card {
	background: #fdfafc;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	margin: 30px 0;
}

.score-breakdown-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--plum);
	margin-bottom: 18px;
}

.scores-bars-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px 30px;
}

.score-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.score-label-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 600;
}

.score-progress-bar-bg {
	height: 8px;
	background: #efe2ea;
	border-radius: 99px;
	overflow: hidden;
}

.score-progress-bar-fill {
	height: 100%;
	background: var(--gradient);
	border-radius: 99px;
	width: 0;
	transition: width 1s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Pros and Cons Panels */
.pros-cons-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 30px 0;
}

.pros-panel {
	background: var(--green-bg);
	border: 1px solid #c2ebda;
	border-radius: 16px;
	padding: 24px;
}

.pros-panel h4 {
	color: #0d5c3a;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 12px;
}

.cons-panel {
	background: var(--red-bg);
	border: 1px solid #f6d1d8;
	border-radius: 16px;
	padding: 24px;
}

.cons-panel h4 {
	color: #7b1d34;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 12px;
}

.pros-panel ul, .cons-panel ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pros-panel li::before {
	content: "✓";
	color: var(--green);
	font-weight: bold;
	margin-right: 8px;
}

.cons-panel li::before {
	content: "✕";
	color: var(--red);
	font-weight: bold;
	margin-right: 8px;
}

.pros-panel li, .cons-panel li {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--plum);
}

/* Pricing Section Toggle */
.pricing-section-wrap {
	margin: 30px 0;
}

.pricing-toggle-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.pricing-toggle-container {
	background: #f1e6ee;
	border-radius: 99px;
	padding: 4px;
	display: inline-flex;
}

.pricing-toggle-btn {
	padding: 8px 20px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 99px;
	cursor: pointer;
	transition: var(--transition);
}

.pricing-toggle-btn.active {
	background: var(--plum);
	color: #fff;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.plan-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}

.plan-card:hover {
	transform: translateY(-4px);
	border-color: var(--magenta);
	box-shadow: var(--shadow-hover);
}

.plan-card h4 {
	font-size: 16px;
	color: var(--plum);
	font-weight: 700;
	margin-bottom: 10px;
}

.plan-price-wrap {
	margin-bottom: 18px;
}

.plan-price-amount {
	font-size: 28px;
	font-weight: 700;
	color: var(--plum);
}

.plan-price-period {
	font-size: 12px;
	color: var(--text-muted);
}

.plan-features-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 13px;
}

.plan-features-list li::before {
	content: "•";
	color: var(--magenta);
	font-weight: bold;
	margin-right: 6px;
}

.plan-card .btn {
	margin-top: auto;
}

/* FAQ Accordion Styling */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 25px 0;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	background: #fdfafc;
}

.faq-question {
	padding: 16px 20px;
	font-size: 14px;
	font-weight: 600;
	color: var(--plum);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
}

.faq-question::after {
	content: "+";
	font-size: 18px;
	color: var(--text-muted);
}

.faq-item.active .faq-question::after {
	content: "-";
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
	padding: 0 20px;
	font-family: var(--font-serif);
	font-size: 15px;
	color: var(--plum);
}

.faq-item.active .faq-answer {
	max-height: 1000px;
	padding: 16px 20px;
}

/* Author Trust Byline Badge */
.trust-byline-card {
	background: #fbf6f8;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px 24px;
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.author-avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	object-fit: cover;
}

.trust-byline-meta h5 {
	font-size: 14px;
	font-weight: 700;
	color: var(--plum);
}

.trust-byline-meta p {
	font-size: 11px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 3px;
}

/* Helpfulness Feedback Poll */
.helpfulness-poll-container {
	border-top: 1px solid var(--border);
	margin-top: 30px;
	padding-top: 20px;
	text-align: center;
}

.helpfulness-poll-container p {
	font-size: 13px;
	font-weight: 600;
	color: var(--plum);
	margin-bottom: 12px;
}

.feedback-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.feedback-btn {
	padding: 6px 16px;
	font-size: 12px;
	border: 1px solid var(--border);
	background: #fff;
	border-radius: 99px;
	cursor: pointer;
	transition: var(--transition);
}

.feedback-btn:hover {
	border-color: var(--magenta);
	color: var(--magenta);
}

/* Category Directory Grid and Filter Panel */
.directory-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 30px;
	margin-top: 30px;
}

.filter-sidebar {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 24px;
}

.filter-widget {
	margin-bottom: 24px;
	border-bottom: 1px solid var(--background);
	padding-bottom: 18px;
}

.filter-widget:last-of-type {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.filter-widget h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.filter-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.filter-options label {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--plum);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

.filter-options input[type="checkbox"] {
	accent-color: var(--magenta);
	width: 16px;
	height: 16px;
}

/* Directory Cards List */
.directory-cards-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.directory-row-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	display: grid;
	grid-template-columns: 80px 1fr 140px 180px;
	align-items: center;
	gap: 24px;
	transition: var(--transition);
}

.directory-row-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	border-color: var(--border);
}

.card-logo-wrap img {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	object-fit: cover;
	border: 1px solid var(--border);
}

.card-content-wrap h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--plum);
	margin-bottom: 6px;
}

.card-verdict {
	font-size: 13px;
	color: var(--text-muted);
}

.card-score-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
	padding: 0 10px;
}

.card-score-box .score-number {
	font-size: 26px;
	font-weight: 700;
	color: var(--magenta);
}

.card-score-box .score-label {
	font-size: 9px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
}

.card-actions-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.card-actions-wrap .btn {
	width: 100%;
	font-size: 13px;
	padding: 10px 15px;
}

/* Comparison Head-to-Head Spec Table template */
.compare-hero-cards {
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	align-items: center;
	gap: 20px;
	margin: 40px 0;
}

.vs-badge {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--plum);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	justify-self: center;
}

.compare-app-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.compare-app-card img {
	width: 80px;
	height: 80px;
	border-radius: 16px;
}

.compare-spec-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	margin: 30px 0;
}

.compare-spec-table th, .compare-spec-table td {
	padding: 16px 20px;
	text-align: center;
	border-bottom: 1px solid var(--border);
}

.compare-spec-table th {
	font-weight: 700;
	color: var(--plum);
	background: #fdfafc;
}

.compare-spec-table tr td:first-child {
	text-align: left;
	font-weight: 600;
	color: var(--text-main);
	width: 25%;
}

.check-icon {
	color: var(--green);
	font-weight: bold;
}

.cross-icon {
	color: var(--red);
	font-weight: bold;
}

/* Winner Banner Overlay style */
.winner-banner {
	background: var(--green-bg);
	border: 2px solid var(--green);
	color: #0d5c3a;
	padding: 15px 20px;
	border-radius: 14px;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
}

/* Footer & Compliance Links */
.site-footer {
	background: var(--plum);
	color: #fff;
	padding: 60px 0 30px;
	margin-top: 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-widget h3 {
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 700;
}

.footer-widget p {
	color: #b69cab;
	font-size: 13px;
	line-height: 1.6;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	color: #b69cab;
	text-decoration: none;
	font-size: 13.5px;
	transition: var(--transition);
}

.footer-links a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
	text-align: center;
}

.footer-bottom p {
	color: #8a6f80;
	font-size: 11px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
	.scorecard-hero {
		grid-template-columns: 1fr;
	}
	.companion-layout {
		grid-template-columns: 1fr;
	}
	.toc-sidebar {
		display: none; /* Hide TOC on mobile */
	}
	.directory-layout {
		grid-template-columns: 1fr;
	}
	.directory-row-card {
		grid-template-columns: 80px 1fr 120px;
		gap: 15px;
	}
	.directory-row-card .card-actions-wrap {
		grid-column: span 3;
		flex-direction: row;
	}
}

@media (max-width: 767px) {
	.header-wrap {
		position: relative;
	}
	.nav-menu {
		display: none; /* JS will handle mobile toggle */
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		border-bottom: 1px solid var(--border);
		padding: 20px;
		gap: 15px;
	}
	.nav-menu.show {
		display: flex;
	}
	.mobile-menu-toggle {
		display: block;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.pros-cons-grid {
		grid-template-columns: 1fr;
	}
	.scores-bars-grid {
		grid-template-columns: 1fr;
	}
	.compare-hero-cards {
		grid-template-columns: 1fr;
	}
	.vs-badge {
		margin: 10px 0;
	}
	.directory-row-card {
		grid-template-columns: 64px 1fr;
	}
	.directory-row-card .card-score-box {
		grid-column: span 2;
		border: none;
		border-top: 1px solid var(--border);
		border-bottom: 1px solid var(--border);
		padding: 10px 0;
		flex-direction: row;
		justify-content: space-between;
	}
	.directory-row-card .card-actions-wrap {
		grid-column: span 2;
	}
}
