/**
 * Semantic Content Briefs - Page Specific Styles
 * Matches the SEONTIC blueprint design.
 */

/* 8 Pillars Grid */
.briefs-pillars-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 50px;
}

.pillar-item {
	background: #0e0e0e;
	padding: 40px 30px;
	transition: background 0.3s ease;
}

.pillar-item:hover {
	background: #161616;
}

.pillar-num {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-color);
	opacity: 0.2;
	line-height: 1;
	margin-bottom: 20px;
	display: block;
}

.pillar-h {
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.pillar-p {
	font-size: 0.85rem;
	color: var(--text-dim);
	line-height: 1.6;
}

/* Spreadsheet Mockup UI */
.brief-mockup-wrap {
	background: #1a1a1a;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(190, 243, 44, 0.2);
	box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.mock-browser-bar {
	background: #111;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mock-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	opacity: 0.5;
}

.mock-content {
	padding: 25px;
}

.mock-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.mock-cell {
	height: 12px;
	border-radius: 2px;
}

.mock-cell.accent { background: rgba(190, 243, 44, 0.2); border: 1px solid rgba(190, 243, 44, 0.1); }
.mock-cell.dim { background: rgba(255,255,255,0.05); }

/* Problem Cards */
.problem-card {
	padding: 25px;
	background: #161616;
	border-left: 2px solid #ff4d4d;
	margin-top: 20px;
}

.problem-card h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.problem-card p {
	font-size: 0.85rem;
	font-style: italic;
	color: var(--text-dim);
}

/* Responsive */
@media (max-width: 1024px) {
	.briefs-pillars-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.briefs-pillars-grid {
		grid-template-columns: 1fr;
	}
}
