/*!
Theme Name: Sorensen
Theme URI: https://sorensen.local
Author: Charles E. Sorensen
Author URI: https://sorensen.local
Description: High-performance parent theme for Albanian SEO content sites. Optimized for speed, AI discoverability, and monetization. Built for rapid deployment of niche content websites. Swiss design principles with mobile-compact layout.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sorensen
Tags: seo, performance, schema, mobile-first, albanian, fast-loading, monetization, swiss-design

This theme, like WordPress, is licensed under the GPL.
Sorensen is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Optimized for Albanian content markets: Albania, Kosovo, North Macedonia.

Design Philosophy: Swiss International Typographic Style
- Typography as primary design element
- Grid-based precision
- Mobile-compact, desktop-spacious
- Zero decorative elements
- Core Web Vitals optimized (LCP < 2.5s, INP < 200ms, CLS < 0.1)
*/

/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
	/* Colors - Swiss minimalism */
	--color-text: #1a1a1a;
	--color-text-light: #666666;
	--color-border: #e0e0e0;
	--color-bg: #ffffff;
	--color-bg-alt: #f5f5f5;
	--primary-color: #0066cc; /* Default, overridden by Branding module */
	
	/* Typography - System fonts only (zero load time) */
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	
	/* Spacing - 8px grid system (mobile-compact) */
	--space-xs: 8px;
	--space-s: 12px;
	--space-m: 16px;
	--space-l: 24px;
	--space-xl: 32px;
	
	/* Layout */
	--container-width: 1200px;
	--content-width: 720px;
	--padding-mobile: 16px;
	--padding-desktop: 30px;
	
	/* Touch targets (44px minimum for accessibility) */
	--touch-target: 44px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	width: 100%;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

/* ========================================
   TYPOGRAPHY - Swiss Hierarchy
   ======================================== */

/* Mobile-first typography (compact) */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 var(--space-s) 0;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
}

h1 {
	font-size: 28px;
}

h2 {
	font-size: 22px;
}

h3 {
	font-size: 18px;
}

h4, h5, h6 {
	font-size: 16px;
}

p {
	margin: 0 0 var(--space-m) 0;
	line-height: 1.5;
}

a {
	color: var(--primary-color);
	text-decoration: underline;
	transition: color 150ms ease;
}

a:hover {
	color: var(--color-text);
}

strong, b {
	font-weight: 700;
}

em, i {
	font-style: italic;
}

small {
	font-size: 14px;
	color: var(--color-text-light);
}

/* Lists */
ul, ol {
	margin: 0 0 var(--space-m) 0;
	padding-left: var(--space-l);
}

li {
	margin-bottom: var(--space-xs);
}

/* ========================================
   LAYOUT SYSTEM
   ======================================== */

/* Container - max-width with padding */
.site-header-inner,
.main-navigation,
.site-main,
.site-info {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--padding-mobile);
	padding-right: var(--padding-mobile);
}

/* Content wrapper for articles */
.entry-content,
.page-content {
	max-width: var(--content-width);
	margin: 0 auto;
}

/* Section spacing (mobile-compact) */
.site-main {
	padding-top: var(--space-l);
	padding-bottom: var(--space-l);
}

article {
	margin-bottom: var(--space-xl);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
	background: #ffffff !important;
	border-bottom: 1px solid var(--color-border);
	height: 56px;
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
}

.site-branding {
	flex: 1;
}

.site-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.site-title a {
	text-decoration: none;
	color: var(--color-text);
}

/* Desktop Navigation - Hidden on mobile */
.main-navigation {
	display: none;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ========================================
   MOBILE MENU - CSS-Only Hamburger
   ======================================== */

/* Hide checkbox (accessibility maintained) */
.mobile-menu-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* Hamburger Icon (48x48 touch target) */
.mobile-menu-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: var(--touch-target);
	height: var(--touch-target);
	padding: 12px;
	cursor: pointer;
	z-index: 101;
	position: relative;
	background: none;
	border: none;
}

.mobile-menu-icon span {
	display: block;
	width: 20px;
	height: 2px;
	background-color: var(--color-text);
	transition: all 200ms ease;
}

/* Animate to X when open */
.mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Panel */
.mobile-navigation {
	position: fixed;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 320px;
	height: 100vh;
	background: var(--color-bg);
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 200ms ease;
}

.mobile-menu-toggle:checked ~ .mobile-navigation {
	transform: translateX(0);
}

/* Backdrop */
.mobile-menu-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease;
	cursor: pointer;
}

.mobile-menu-toggle:checked ~ .mobile-menu-backdrop {
	opacity: 1;
	pointer-events: auto;
}

/* Close Button */
.mobile-menu-header {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	z-index: 1001;
}

.mobile-menu-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--touch-target);
	height: 56px;
	font-size: 24px;
	cursor: pointer;
	color: var(--color-text-light);
	font-weight: 300;
}

/* Mobile Menu List */
.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 56px 0 var(--space-l) 0;
}

.mobile-menu-list a {
	display: block;
	padding: var(--space-s) var(--space-m);
	color: var(--color-text);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	min-height: var(--touch-target);
	display: flex;
	align-items: center;
}

.mobile-menu-list a:hover {
	background: var(--color-bg-alt);
	color: var(--primary-color);
}

/* Active page */
.mobile-menu-list .current-menu-item > a,
.mobile-menu-list .current_page_item > a,
.mobile-menu-list .current-menu-ancestor > a,
.mobile-menu-list .current-menu-item > .submenu-label > a,
.mobile-menu-list .current_page_item > .submenu-label > a {
	color: var(--primary-color);
	font-weight: 600;
	background: var(--color-bg-alt);
}

/* Submenu */
.mobile-menu-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 300ms ease;
	background: var(--color-bg-alt);
}

.mobile-menu-list .sub-menu a {
	padding-left: var(--space-xl);
	font-size: 15px;
}

/* Submenu toggle */
.submenu-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.submenu-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.submenu-label a {
	flex: 1;
	padding-right: 0;
}

.submenu-icon {
	width: var(--touch-target);
	height: var(--touch-target);
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid var(--color-border);
}

.submenu-icon::after {
	content: '';
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 200ms ease;
}

.submenu-toggle:checked ~ .submenu-label .submenu-icon::after,
.current-menu-ancestor > .submenu-label .submenu-icon::after,
.current-menu-parent > .submenu-label .submenu-icon::after {
	transform: rotate(-135deg);
}

.submenu-toggle:checked ~ .sub-menu,
.current-menu-ancestor > .sub-menu,
.current-menu-parent > .sub-menu {
	max-height: 1000px;
}

/* ========================================
   CONTENT PAGES - Article Layout
   ======================================== */

.entry-header {
	margin-bottom: var(--space-l);
}

.entry-title {
	margin-bottom: var(--space-s);
}

.entry-meta {
	font-size: 14px;
	color: var(--color-text-light);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-m);
}

.entry-content {
	margin-bottom: var(--space-xl);
}

/* Typography rhythm in content */
.entry-content > * + * {
	margin-top: var(--space-m);
}

.entry-content h2 {
	margin-top: var(--space-xl);
	margin-bottom: var(--space-m);
	padding-top: var(--space-m);
}

.entry-content h3 {
	margin-top: var(--space-l);
	margin-bottom: var(--space-s);
}

/* ========================================
   IMAGES & MEDIA
   ======================================== */

img {
	max-width: 100%;
	height: auto;
	display: block;
}

figure {
	margin: var(--space-l) 0;
}

figcaption {
	font-size: 14px;
	color: var(--color-text-light);
	margin-top: var(--space-xs);
	font-style: italic;
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */

.button,
button,
input[type="submit"],
input[type="button"] {
	display: inline-block;
	padding: var(--space-s) var(--space-l);
	min-height: var(--touch-target);
	background: var(--primary-color);
	color: var(--color-bg);
	border: none;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 150ms ease;
	-webkit-appearance: none;
	appearance: none;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	background: var(--color-text);
	color: var(--color-bg);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
	border-top: 1px solid var(--color-border);
	background: var(--color-bg-alt);
	padding: var(--space-l) 0;
	margin-top: var(--space-m); /* Reduced: 16px instead of 32px */
}

.site-info {
	font-size: 14px;
	color: var(--color-text-light);
	text-align: center;
}

/* ========================================
   UTILITIES
   ======================================== */

/* Screen reader only (accessibility) */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

/* Skip to content link */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--primary-color);
	color: var(--color-bg);
	padding: var(--space-s) var(--space-m);
	text-decoration: none;
	z-index: 9999;
}

.skip-link:focus {
	top: 0;
}

/* ========================================
   DESKTOP STYLES - 768px+
   ======================================== */

@media (min-width: 768px) {
	/* Typography scales up on desktop */
	h1 { font-size: 48px; }
	h2 { font-size: 36px; }
	h3 { font-size: 24px; }
	h4 { font-size: 20px; }
	
	body {
		font-size: 18px;
		line-height: 1.6;
	}
	
	/* Increase spacing on desktop (Swiss breathing room) */
	:root {
		--space-l: 32px;
		--space-xl: 48px;
	}
	
	/* Container - align everything to same left edge */
	.site-header-inner,
	.main-navigation,
	.site-info {
		padding-left: var(--padding-desktop);
		padding-right: var(--padding-desktop);
	}
	
	/* site-main gets NO padding - content aligns with header */
	.site-main {
		padding-left: var(--padding-desktop);
		padding-right: var(--padding-desktop);
	}
	
	/* Section spacing */
	.site-main {
		padding-top: var(--space-xl);
		padding-bottom: var(--space-xl);
	}
	
	article {
		margin-bottom: 64px;
	}
	
	/* Header - Desktop */
	.site-header {
		height: auto;
		background: #ffffff;
		position: sticky;
		top: 0;
		z-index: 100;
	}
	
	.site-header-inner {
		height: auto;
		padding: 20px var(--padding-desktop);
		flex-direction: column;
		align-items: flex-start;
	}
	
	.site-branding {
		margin-bottom: 15px;
	}
	
	.site-title {
		font-size: 24px;
	}
	
	/* Hide mobile menu */
	.mobile-menu-icon,
	.mobile-navigation {
		display: none;
	}
	
	/* Desktop navigation - below logo */
	.main-navigation {
		display: block;
		width: 100%;
	}
	
	.main-navigation ul {
		display: flex;
		gap: 30px;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	.main-navigation a {
		color: #1a1a1a;
		text-decoration: none;
		font-size: 16px;
		transition: color 0.2s;
	}
	
	.main-navigation a:hover {
		color: var(--primary-color);
	}
	
	.main-navigation .current-menu-item > a {
		color: var(--primary-color);
		font-weight: 600;
	}
	
	/* Dropdown on hover */
	.main-navigation .menu-item-has-children {
		position: relative;
	}
	
	.main-navigation .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: #ffffff;
		border: 1px solid #e0e0e0;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		min-width: 200px;
		padding: 10px 0;
		margin-top: 0;
		list-style: none;
	}
	
	.main-navigation .menu-item-has-children:hover > .sub-menu {
		display: block;
	}
	
	.main-navigation .sub-menu a {
		display: block;
		padding: 10px 20px;
	}
	
	.main-navigation .sub-menu a:hover {
		background: #f5f5f5;
	}
	
	/* Content spacing */
	.entry-header {
		margin-bottom: var(--space-xl);
	}
	
	.entry-content {
		margin-bottom: 64px;
	}
	
	.entry-content h2 {
		margin-top: 64px;
		padding-top: var(--space-l);
	}
	
	.entry-content h3 {
		margin-top: var(--space-xl);
	}
}

/* ========================================
   LARGE DESKTOP - 1024px+
   ======================================== */

@media (min-width: 1024px) {
	/* Even more generous spacing for large screens */
	.site-main {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

/* ========================================
   SINGLE HOUSEMATE PAGE
   ======================================== */

/* Hero Section */
.housemate-hero {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: var(--space-l) 0;
	margin-bottom: var(--space-xl);
}

.housemate-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--padding-mobile);
}

.housemate-hero-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-l);
	align-items: center;
}

/* Photo with Status Badge */
.housemate-photo-wrapper {
	position: relative;
	width: 200px;
	flex-shrink: 0;
}

.housemate-photo {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: block;
}

/* Status Badge */
.housemate-status-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.status-emoji {
	font-size: 14px;
	line-height: 1;
}

.status-label {
	line-height: 1;
}

/* Badge Colors */
.status-thashetheme {
	background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
	color: #fff;
}

.status-konfirmuar {
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: #fff;
}

.status-aktiv {
	background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
	color: #fff;
}

.status-opinioniste {
	background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
	color: #fff;
}

.status-larguar {
	background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
	color: #fff;
}

.status-eliminuar {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
}

.status-finalist {
	background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	color: #fff;
}

.status-fitues {
	background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
	color: #1a1a1a;
	box-shadow: 0 2px 12px rgba(241, 196, 15, 0.5);
}

/* Header Info */
.housemate-header-info {
	flex: 1;
	text-align: center;
}

.housemate-name {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 var(--space-xs) 0;
	line-height: 1.2;
}

.housemate-real-name {
	font-size: 16px;
	color: var(--color-text-light);
	margin: 0 0 var(--space-m) 0;
	font-style: italic;
}

/* Quick Facts */
.housemate-quick-facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-m);
	justify-content: center;
	margin-bottom: var(--space-l);
	font-size: 14px;
}

.quick-fact {
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 6px;
}

.quick-fact strong {
	color: var(--color-text-light);
	font-weight: 600;
	margin-right: 4px;
}

/* Social Media Links */
.housemate-social {
	display: flex;
	gap: var(--space-s);
	justify-content: center;
	margin-bottom: var(--space-m);
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	color: var(--color-text);
	transition: all 0.2s;
	text-decoration: none;
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-link.instagram:hover { background: #E4405F; color: #fff; }
.social-link.facebook:hover { background: #1877F2; color: #fff; }
.social-link.tiktok:hover { background: #000; color: #fff; }
.social-link.twitter:hover { background: #000; color: #fff; }

/* Share Buttons */
.housemate-share {
	display: flex;
	align-items: center;
	gap: var(--space-s);
	justify-content: center;
	padding: var(--space-m);
	background: rgba(255, 255, 255, 0.8);
	border-radius: 8px;
}

.share-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text-light);
}

.share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 50%;
	color: var(--color-text);
	transition: all 0.2s;
	text-decoration: none;
}

.share-btn:hover {
	transform: scale(1.1);
}

.share-btn.facebook { background: #1877F2; color: #fff; }
.share-btn.twitter { background: #000; color: #fff; }
.share-btn.whatsapp { background: #25D366; color: #fff; }
.share-btn.telegram { background: #0088cc; color: #fff; }

/* Content Layout */
.housemate-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
}

/* Biography */
.housemate-biography {
	background: #fff;
	padding: var(--space-l);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 var(--space-m) 0;
	padding-bottom: var(--space-s);
	border-bottom: 2px solid var(--primary-color);
}

.biography-content {
	line-height: 1.6;
}

.biography-content p {
	margin-bottom: var(--space-m);
}

/* Info Box */
.housemate-info-box {
	background: #f8f9fa;
	padding: var(--space-l);
	border-radius: 8px;
	border: 1px solid var(--color-border);
}

.info-box-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 var(--space-m) 0;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
}

.info-table tr {
	border-bottom: 1px solid var(--color-border);
}

.info-table tr:last-child {
	border-bottom: none;
}

.info-table th {
	text-align: left;
	padding: var(--space-s) var(--space-s) var(--space-s) 0;
	font-weight: 600;
	color: var(--color-text-light);
	font-size: 14px;
	width: 40%;
	vertical-align: top;
}

.info-table td {
	padding: var(--space-s) 0;
	font-size: 14px;
}

/* Desktop Layout */
@media (min-width: 768px) {
	.housemate-hero {
		padding: var(--space-xl) 0;
	}
	
	.housemate-container {
		padding: 0 var(--padding-desktop);
	}
	
	.housemate-hero-content {
		flex-direction: row;
		align-items: flex-start;
		gap: var(--space-xl);
	}
	
	.housemate-photo-wrapper {
		width: 250px;
	}
	
	.housemate-status-badge {
		top: 15px;
		left: 15px;
		padding: 8px 16px;
		font-size: 13px;
		gap: 8px;
	}
	
	.status-emoji {
		font-size: 16px;
	}
	
	.housemate-header-info {
		text-align: left;
	}
	
	.housemate-name {
		font-size: 42px;
	}
	
	.housemate-real-name {
		font-size: 18px;
	}
	
	.housemate-quick-facts {
		justify-content: flex-start;
		font-size: 15px;
	}
	
	.housemate-social {
		justify-content: flex-start;
	}
	
	.social-link {
		width: 44px;
		height: 44px;
	}
	
	.housemate-share {
		justify-content: flex-start;
	}
	
	.share-btn {
		width: 40px;
		height: 40px;
	}
	
	.housemate-content {
		grid-template-columns: 1fr 320px;
		gap: var(--space-xl);
		align-items: start;
	}
	
	.housemate-biography {
		order: 1;
	}
	
	.housemate-info-box {
		order: 2;
		position: sticky;
		top: 80px;
	}
	
	.housemate-biography {
		padding: var(--space-xl);
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.info-table th {
		font-size: 15px;
	}
	
	.info-table td {
		font-size: 15px;
	}
}