/* ===========================================
   T4T Blog * Version: 6.1.0
   Brand Color Integration
   =========================================== */

:root {
	--t4t-primary:   #ef6b3e; /* Orange */
	--t4t-blue:      #16669b; /* Brand Blue */
	--t4t-link:      #16669b;
	--t4t-link-hover:#ef6b3e;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@700;800&display=swap');


/* ─────────────────────────────────────────
   ARCHIVE PAGE – Outer wrapper
───────────────────────────────────────── */
.t4t-archive-page body {
	background: #eef0f5 !important;
}

.t4t-archive-wrap {
	width: 100%;
	background: #eef0f5;
	padding: 32px 0 60px;
}

.t4t-container {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* Archive category heading */
.t4t-archive-heading {
	margin-bottom: 26px;
}
.t4t-archive-title {
	font-family: 'Inter', sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	color: #111827;
	margin: 0 0 6px;
}
.t4t-archive-desc {
	font-size: 0.9rem;
	color: #6b7280;
	margin: 0;
}

/* ─────────────────────────────────────────
   3-COLUMN GRID
───────────────────────────────────────── */
.t4t-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	width: 100%;
}
@media (max-width: 1024px) {
	.t4t-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.t4t-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   CARD  – white box, subtle shadow
───────────────────────────────────────── */
.t4t-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
	/* NO padding here – handled per section */
}
.t4t-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ─────────────────────────────────────────
   CATEGORY LABEL – Floating on image
───────────────────────────────────────── */
.t4t-card-cat-label {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
	display: flex;
	align-items: center;
}

.t4t-cat-icon-circle {
	width: 44px;
	height: 44px;
	background: var(--t4t-primary); /* #ef6b3e */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid #fff;
	position: relative;
	z-index: 2;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.t4t-cat-icon-circle svg {
	width: 20px;
	height: 20px;
}

.t4t-cat-text-pill {
	background: #fff;
	color: #6b7280;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 8px 24px 8px 36px;
	border-radius: 50px;
	margin-left: -32px;
	z-index: 1;
	white-space: nowrap;
	line-height: 1.2;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: background 0.2s, color 0.2s;
}

.t4t-card-cat-label:hover .t4t-cat-text-pill {
	background: var(--t4t-primary);
	color: #fff;
}


/* ─────────────────────────────────────────
   IMAGE  – inset 10px from card edges
   (top / left / right)  image has its OWN radius
───────────────────────────────────────── */
.t4t-card-img-link {
	display: block;
	padding: 5px 5px 0 5px;   /* <── inset reduced to 5px */
	line-height: 0;
	overflow: hidden;
}
.t4t-card-img {
	width: 100%;
	height: 240px;
	border-radius: 20px;          /* border-radius 20px */
	background-size: cover;
	background-position: center;
	display: block;
	transition: transform 0.4s ease;
}
.t4t-card-img-link:hover .t4t-card-img {
	transform: scale(1.05);
}

/* No-image fallback */
.t4t-no-img {
	background: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
}
.t4t-no-img-text {
	font-family: 'Inter', sans-serif;
	color: #9ca3af;
	font-size: 0.85rem;
}

/* ─────────────────────────────────────────
   CARD BODY
───────────────────────────────────────── */
.t4t-card-body {
	padding: 14px 16px 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Title – Work Sans, 26px, bold, 30px height */
.t4t-card-title {
	font-family: 'Work Sans', sans-serif !important;
	font-size: 26px !important;
	font-weight: 700 !important;
	line-height: 30px !important;
	margin: 0 0 10px;
}
.t4t-card-title a {
	color: var(--t4t-blue);
	text-decoration: none;
	transition: color 0.2s;
}
.t4t-card-title a:hover {
	color: var(--t4t-primary);
	text-decoration: underline;
}

/* Excerpt – dark gray, 0.875rem */
.t4t-card-excerpt {
	font-family: 'Inter', sans-serif;
	font-size: 1.05rem;
	color: #374151;
	line-height: 1.65;
	margin: 0 0 14px;
	flex: 1;
}
.t4t-readmore-inline {
	display: none;
}

/* Footer: author · date | Read more */
.t4t-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-top: 12px;
	border-top: 1px solid #f3f4f6;
	margin-top: auto;
}
.t4t-card-meta {
	font-family: 'Inter', sans-serif;
	font-size: 0.78rem;
	color: #6b7280;
}
.t4t-read-more {
	font-family: 'Inter', sans-serif;
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--t4t-blue);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}
.t4t-read-more:hover {
	color: var(--t4t-primary);
	text-decoration: underline;
}

/* ─────────────────────────────────────────
   PAGINATION
───────────────────────────────────────── */
.t4t-pagination {
	margin-top: 40px;
	text-align: center;
}
.t4t-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.t4t-pagination .page-numbers {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 7px;
	background: #fff;
	color: #374151;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	box-shadow: 0 1px 5px rgba(0,0,0,0.07);
	transition: background 0.2s, color 0.2s;
}
.t4t-pagination .page-numbers.current,
.t4t-pagination .page-numbers:hover {
	background: var(--t4t-blue);
	color: #fff;
}
.t4t-no-posts {
	grid-column: 1/-1;
	text-align: center;
	padding: 60px 0;
	font-family: 'Inter', sans-serif;
	color: #6b7280;
}

/* ===========================================
   SINGLE POST PAGE
   =========================================== */

/* ─── HERO ─── */
.t4ts-hero {
	position: relative;
	width: 100%;
	height: 480px;
	background-size: cover;
	background-position: center;
	background-color: #111827;
	display: flex;
	align-items: flex-end;
}
.t4ts-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(170deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}
.t4ts-hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	padding: 0 24px 44px;
	color: #fff;
	text-align: center;
}
.t4ts-cat-pill {
	display: inline-block;
	background: var(--t4t-primary);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 5px 14px;
	border-radius: 50px;
	text-decoration: none;
	margin-bottom: 14px;
}
.t4ts-title {
	font-family: 'Inter', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 18px;
	text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.t4ts-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255,255,255,0.92);
	flex-wrap: wrap;
}
.t4ts-author-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}
.t4ts-avatar {
	border-radius: 50%;
	width: 34px !important;
	height: 34px !important;
	object-fit: cover;
	border: 2px solid rgba(255,255,255,0.6);
}
.t4ts-sep { opacity: 0.5; }
@media (max-width: 768px) {
	.t4ts-hero { height: 320px; }
	.t4ts-title { font-size: 1.6rem; }
}

/* ─── SINGLE PAGE LAYOUT ─── */
.t4ts-page-wrap {
	display: flex;
	gap: 30px;
	max-width: 1160px;
	margin: 0 auto;
	padding: 36px 20px 60px;
	align-items: flex-start;
	box-sizing: border-box;
}
.t4ts-content-col { flex: 1; min-width: 0; }

/* Share buttons */
.t4ts-share {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.t4ts-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 20px;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	color: #fff !important;
	transition: opacity 0.2s, transform 0.2s;
}
.t4ts-share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.t4ts-fb { background: #1877f2; }
.t4ts-tw { background: #1da1f2; }
.t4ts-li { background: #0a66c2; }
.t4ts-pt { background: #e60023; }

/* Post body */
.t4ts-body {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	line-height: 1.85;
	color: #374151;
}
.t4ts-body h2 { font-size: 1.5rem; font-weight: 800; color: #111827; margin: 32px 0 14px; }
.t4ts-body h3 { font-size: 1.2rem; font-weight: 700; color: #1f2937; margin: 24px 0 10px; }
.t4ts-body h4 { font-size: 1.05rem; font-weight: 700; color: #1f2937; margin: 20px 0 8px; }
.t4ts-body p { margin: 0 0 18px; }
.t4ts-body strong { color: #111827; }
.t4ts-body a { color: var(--t4t-blue); }
.t4ts-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 10px 0 18px; }
.t4ts-body blockquote {
	border-left: 4px solid var(--t4t-primary);
	background: #fff8f5;
	padding: 16px 20px;
	margin: 24px 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
	color: #4b5563;
}
.t4ts-body ul, .t4ts-body ol { padding-left: 22px; margin: 0 0 18px; }
.t4ts-body li { margin-bottom: 8px; }

/* Tags */
.t4ts-tags { margin: 24px 0; font-size: 0.85rem; color: #6b7280; font-family: 'Inter', sans-serif; }
.t4ts-tags a { color: var(--t4t-blue); text-decoration: none; margin: 0 4px; }

/* Author box */
.t4ts-author-box {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: #f9fafb;
	border-radius: 12px;
	padding: 24px;
	margin: 36px 0;
	border: 1px solid #e5e7eb;
}
.t4ts-author-avatar { border-radius: 50%; width: 80px !important; height: 80px !important; object-fit: cover; flex-shrink: 0; }
.t4ts-author-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; margin: 0 0 8px; color: #111827; }
.t4ts-author-bio { font-family: 'Inter', sans-serif; font-size: 0.88rem; color: #6b7280; margin: 0; line-height: 1.65; }
/* ─────────────────────────────────────────
   CARD FOOTER & META
───────────────────────────────────────── */
.t4t-card-footer {
	padding: 16px 20px 22px;
	border-top: 1px solid #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.t4t-card-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.t4t-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	color: #6b7280;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
}

.t4t-meta-item svg {
	width: 14px;
	height: 14px;
	color: var(--t4t-primary); /* Orange icons */
}

/* ─────────────────────────────────────────
   READ MORE LINK (REVERTED FROM BUTTON)
───────────────────────────────────────── */
.t4t-read-more {
	color: var(--t4t-blue);
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none !important;
	transition: all 0.2s ease;
	text-transform: capitalize;
}

.t4t-read-more:hover {
	color: var(--t4t-primary);
	text-decoration: underline !important;
}


/* Prev/next */
.t4ts-nav { display: flex; justify-content: space-between; gap: 16px; margin: 32px 0; flex-wrap: wrap; }
.t4ts-nav a { color: var(--t4t-blue); text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; }
.t4ts-nav a:hover { color: var(--t4t-primary); text-decoration: underline; }

/* Related posts */
.t4ts-related { margin: 36px 0; }
.t4ts-related-title { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 800; margin: 0 0 20px; color: #111827; }
.t4ts-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 640px) { .t4ts-related-grid { grid-template-columns: 1fr; } }
.t4ts-related-card {
	display: block;
	text-decoration: none;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.t4ts-related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.t4ts-related-img { width: 100%; height: 130px; background-size: cover; background-position: center; }
.t4ts-related-name { padding: 10px 12px; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: #1f2937; margin: 0; line-height: 1.4; }

/* Comments */
.t4ts-comments { margin-top: 36px; }

/* ─── SIDEBAR ─── */
.t4ts-sidebar { width: 290px; flex-shrink: 0; }
@media (max-width: 1024px) {
	.t4ts-sidebar { display: none; }
	.t4ts-page-wrap { padding: 24px 16px 48px; }
}
.t4ts-sidebar .widget {
	background: #fff;
	border-radius: 10px;
	padding: 0;
	margin-bottom: 24px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.07);
	overflow: hidden;
}
.t4ts-sidebar .widget-title {
	font-family: 'Inter', sans-serif;
	font-size: 0.88rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--t4t-blue);
	color: #fff;
	padding: 12px 16px;
	margin: 0;
}
.t4ts-sidebar .widget > *:not(.widget-title) {
	padding: 14px 16px;
}

/* ─────────────────────────────────────────
   SINGLE BLOG PAGE & SIDEBAR v4.5.0
───────────────────────────────────────── */
.t4t-single-wrapper {
	background: #fff;
	padding: 40px 0 80px;
}

.t4t-single-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 40px;
}

@media (max-width: 991px) {
	.t4t-single-grid { grid-template-columns: 1fr; }
}

/* Header Section */
.t4t-single-header {
	margin-bottom: 24px;
	margin-top: 25px; /* Added spacing from top image */
}


.t4t-single-cat-pill {
	display: inline-block;
	background: var(--t4t-primary); /* Branded Orange */
	color: #ffffff;
	padding: 5px 15px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}


.t4t-single-title {
	font-family: 'Work Sans', sans-serif !important;
	font-size: 30px !important; /* Reduced to 30px */
	font-weight: 800 !important;
	line-height: 1.2 !important;
	color: #16669b !important; /* Brand Blue */
	margin-bottom: 15px !important;
}


.t4t-single-meta {
	font-size: 0.92rem;
	color: #6b7280;
	margin-bottom: 20px;
}

.t4t-author-name {
	color: #16669b;
	font-weight: 600;
}

/* Featured Image with Hero Overlay */
.t4t-hero-overlay {
	position: relative;
	margin-bottom: 30px;
	border-radius: 12px;
	overflow: hidden;
	height: 480px; /* Slightly taller for hero */
}

.t4t-hero-overlay::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 70%;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
	z-index: 1;
}

.t4t-single-featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.t4t-hero-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	z-index: 2;
}

.t4t-hero-title {
	color: #ffffff !important;
	font-size: 34px !important;
	margin-bottom: 12px !important;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.t4t-hero-meta {
	color: rgba(255,255,255,0.9) !important;
	font-size: 0.95rem !important;
}

.t4t-hero-meta .t4t-author-name {
	color: #ffffff !important;
	font-weight: 600;
}

.t4t-date-label {
	z-index: 3 !important;
}



.t4t-date-label {
	top: 20px !important;
	left: 20px !important;
}

/* Content Area */
.t4t-single-content {
	font-family: 'Inter', sans-serif;
	font-size: 16px !important; /* Set to 16px */
	line-height: 1.8;
	color: #808080 !important; /* Set to #808080 */
}


.t4t-single-content p {
	margin-bottom: 25px;
}

/* Sidebar Styling - Premium Magazine Look */
.t4t-single-sidebar .widget,
.t4t-widget {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.t4t-single-sidebar .widget-title,
.t4t-widget-title {
	background: var(--t4t-blue);
	color: #fff !important;
	padding: 14px 20px !important;
	font-size: 1.15rem !important;
	font-weight: 700 !important;
	margin: 0 !important;
	font-family: 'Inter', sans-serif !important;
}

.t4t-single-sidebar .widget ul,
.t4t-widget-content {
	padding: 15px 12px !important; /* Reduced horizontal padding */
	margin: 0 !important;
	list-style: none !important;
}


.t4t-single-sidebar .widget ul li {
	padding: 10px 0;
	border-bottom: 1px solid #f3f4f6;
	color: var(--t4t-blue);
	font-weight: 500;
}

.t4t-single-sidebar .widget ul li:last-child {
	border-bottom: none;
}

/* Category widget (Pills look) */
.t4t-single-sidebar .widget_categories ul li a {
	color: #4b5563;
	text-decoration: none;
}

/* Related Posts Grid at bottom */
.t4t-single-related {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #f3f4f6;
}

.t4t-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.t4t-related-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 10px;
}

.t4t-related-post-title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.t4t-related-post-title a {
	color: var(--t4t-blue);
	text-decoration: none;
}

/* Sidebar Manual Content */
.t4t-sidebar-post {
	margin-bottom: 24px;
}

.t4t-sidebar-post:last-child {
	margin-bottom: 0;
}

.t4t-sidebar-img-link img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
	margin-bottom: 10px;
}

.t4t-sidebar-post-title {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
}

.t4t-sidebar-post-title a {
	color: #16669b;
	text-decoration: none;
	transition: color 0.2s;
}

.t4t-sidebar-post-title a:hover {
	color: var(--t4t-primary);
}

.t4t-cat-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.t4t-cat-list li {
	padding: 10px 0;
	border-bottom: 1px solid #f3f4f6;
}

.t4t-cat-list li:last-child {
	border-bottom: none;
}

.t4t-cat-list li a {
	color: #4b5563;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.2s;
}

.t4t-cat-list li a:hover {
	color: var(--t4t-blue);
}

/* Social Share Section */
.t4t-social-share-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid #f3f4f6;
	margin: 0 0 25px 0;
}

.t4t-social-top {
	border-top: none;
	padding: 15px 0;
	margin-top: -10px; /* Bring it closer to meta */
}


.t4t-social-text {
	font-family: 'Work Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
}

.t4t-social-icons {
	display: flex;
	gap: 12px;
}

.t4t-social-link {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 18px;
	transition: transform 0.2s, opacity 0.2s;
}

.t4t-social-link:hover {
	transform: translateY(-3px);
	opacity: 0.9;
}

.t4t-x { background: #000000; }  /* Official X (Twitter) Black */
.t4t-li { background: #0A66C2; } /* Official LinkedIn Blue */
.t4t-fb { background: #1877F2; } /* Official Facebook Blue */
.t4t-pt { background: #BD081C; } /* Official Pinterest Red */
.t4t-gp { background: #DB4437; } /* Official Google Plus Red */



/* Comment Section Styling */
.t4t-comments-section {
	margin-top: 50px;
	padding: 0 !important; /* Remove any left padding */
}

#respond {
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	margin-bottom: 40px;
}

#reply-title {
	font-family: 'Work Sans', sans-serif !important;
	font-size: 26px !important;
	font-weight: 800 !important;
	color: #16669b !important;
	margin: 0 0 20px 0 !important;
	display: block;
}

.comment-form-comment textarea {
	width: 100%;
	border: 1px solid #d1d5db !important;
	border-radius: 12px !important;
	padding: 18px !important;
	font-family: 'Inter', sans-serif !important;
	background: #ffffff !important;
	font-size: 15px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
	width: 100%;
	border: 1px solid #d1d5db !important;
	border-radius: 10px !important;
	padding: 14px !important;
	background: #ffffff !important;
	font-size: 15px;
}

.form-submit input[type="submit"] {
	background: var(--t4t-blue) !important;
	color: #fff !important;
	padding: 14px 45px !important;
	border-radius: 50px !important;
	border: none !important;
	font-weight: 700 !important;
	font-family: 'Inter', sans-serif !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 12px rgba(22, 102, 155, 0.2);
}

.form-submit input[type="submit"]:hover {
	background: var(--t4t-primary) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(239, 107, 62, 0.3);
}

.logged-in-as {
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	color: #6b7280;
	margin-bottom: 15px;
}

.t4t-fb-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	margin-bottom: 12px;
}

.t4t-fb-card-cover {
	height: 120px;
	background-size: cover;
	background-position: center;
	width: 100%;
}

.t4t-fb-card-profile-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	background: #fff;
	border-top: 1px solid #f3f4f6;
}

.t4t-fb-card-identity {
	display: flex;
	align-items: center;
	gap: 10px;
}

.t4t-fb-card-logo {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	object-fit: cover;
}

.t4t-fb-card-name {
	font-weight: 700;
	font-size: 14px;
	color: #111827;
	font-family: 'Inter', sans-serif;
}

.t4t-fb-card-actions {
	display: flex;
	gap: 8px;
}

.t4t-fb-card-btn {
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none !important;
	display: inline-block;
	transition: all 0.2s ease;
}

.t4t-fb-card-follow {
	background: #1877f2;
	color: #fff !important;
}

.t4t-fb-card-follow:hover {
	background: #1565c0;
}

.t4t-fb-card-share {
	background: #f3f4f6;
	color: #374151 !important;
	border: 1px solid #d1d5db;
}

.t4t-fb-card-share:hover {
	background: #e5e7eb;
}

/* Timeline Container to crop duplicate native header completely */
.t4t-fb-timeline-container {
	position: relative;
	overflow: hidden;
	height: 330px;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #fff;
}

.t4t-fb-timeline-container iframe {
	margin-top: -70px;
	height: 400px !important;
	width: 100% !important;
}

/* ==========================================================================
   RECENT & RELATED MAGAZINE LIST GRIDS
   ========================================================================== */
.t4t-single-list-sections {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.t4t-posts-list-box {
	background: #ffffff;
	padding: 24px 28px;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.t4t-list-box-title {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 20px 0 !important;
	line-height: 1.2;
}

.t4t-list-box-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.t4t-list-box-col ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.t4t-list-box-col li {
	margin: 0 0 10px 0 !important;
	padding: 0 !important;
	line-height: 1.4;
}

.t4t-list-box-col li:last-child {
	margin-bottom: 0 !important;
}

.t4t-list-box-col li a {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #374151;
	text-decoration: none !important;
	font-size: 15.5px;
	font-weight: 500;
	transition: color 0.15s ease-in-out;
}

.t4t-list-box-col li a:hover {
	color: #16669b !important;
}

.t4t-list-chevron {
	color: #9ca3af;
	font-size: 17px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", monospace;
	font-weight: 600;
	line-height: 1;
	margin-top: 2px;
}

.t4t-list-title-text {
	flex: 1;
	white-space: normal;
	word-break: break-word;
}

/* Responsive grid for smaller screens */
@media (max-width: 768px) {
	.t4t-list-box-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}



