/**
 * Melhorias do tema (aditivo)
 * Carregado DEPOIS de style.min.css (dependência 'main'), sobrescreve sem !important.
 * Regra do projeto: SEM box-shadow, SEM transition, SEM transform, SEM animation, SEM sublinhado.
 * Cobre: cards do blog, post único e sidebar (listagem + post único). NÃO afeta widgets do rodapé.
 *
 * @package Tutor_Starter
 */

/* =========================================================================
 * 1. CARDS DA LISTAGEM DE BLOG
 * ========================================================================= */
.blog-post-content.layout-grid-2,
.blog-post-content.layout-grid-3 {
	grid-gap: 28px;
	align-items: stretch;
}
@media (max-width: 900px) {
	.blog-post-content.layout-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.blog-post-content.layout-grid-2,
	.blog-post-content.layout-grid-3 { grid-template-columns: 1fr; }
}

.blog-post-content .type-post {
	background: #ffffff;
	border: 1px solid #e6e8ee;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 0;
}
.blog-post-content .type-post:hover {
	box-shadow: none;
	border-color: #c7ccd8;
}
.blog-post-content .type-post:hover .post-thumbnail img {
	transform: none;
}

.blog-post-content .post-thumbnail {
	overflow: hidden;
	border-radius: 0;
	margin: 0;
	background: #f3f4f7;
}
.blog-post-content .post-thumbnail a { display: block; line-height: 0; }
.blog-post-content .post-thumbnail img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 0;
	transition: none;
	transform: none;
	display: block;
}

.blog-post-content .post-data {
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	color: #0a083b;
}

.blog-post-content .entry-meta {
	margin-bottom: 12px;
	opacity: 1;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .2px;
}
.blog-post-content .entry-meta .category a,
.blog-post-content .entry-meta a[rel~="category"] {
	color: #1950d1;
	text-transform: uppercase;
	letter-spacing: .6px;
	font-weight: 600;
	font-size: 11.5px;
}
.blog-post-content .entry-meta .posted-on,
.blog-post-content .entry-meta time { color: #6b7280; }

.blog-post-content .entry-title {
	font-size: 20px;
	line-height: 1.35;
	letter-spacing: -.3px;
	margin: 0 0 12px;
	padding: 0;
	font-weight: 700;
}
.blog-post-content .entry-title a { color: #0a083b; }
.blog-post-content .entry-title a:hover { color: #1950d1; }

.blog-post-content .excerpt {
	opacity: 1;
	color: #4b5563;
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: 0;
	margin-bottom: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-post-content .read-more {
	margin-top: auto;
	align-self: flex-start;
	color: #1950d1;
	font-weight: 600;
	font-size: 14.5px;
	padding-top: 4px;
	border-bottom: 0;
	text-decoration: none;
}
.blog-post-content .read-more:hover {
	color: #143fa6;
	text-decoration: none;
}

/* =========================================================================
 * 2. POST ÚNICO
 * ========================================================================= */
.single-post .entry-header {
	text-align: center;
	margin-top: 40px;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}
.single-post .entry-title {
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: -.8px;
	margin-bottom: 20px;
	color: #0a083b;
}
@media (max-width: 640px) {
	.single-post .entry-title { font-size: 28px; }
	.single-post .entry-header { margin-top: 24px; }
}

/* Meta: separador em ponto discreto, sem o "I" */
.single-post .entry-meta { margin-bottom: 36px; }
.single-post .entry-meta span {
	font-size: 15px;
	line-height: 1.6;
	color: #6b7280;
	letter-spacing: 0;
	padding-right: 16px;
}
.single-post .entry-meta span:not(:last-child):after {
	content: "\2022";
	color: #cbd0da;
	padding-left: 16px;
}
.single-post .entry-meta a { color: #1950d1; text-decoration: none; }

/* Imagem de destaque: proporção fixa, cantos suaves, sem sombra */
.single-post .post-thumbnail {
	margin-bottom: 44px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.single-post .post-thumbnail img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: none;
	transform: none;
	transition: none;
}

/* Corpo do texto: coluna legível e tipografia mais confortável */
.single-post .entry-content {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	font-size: 17.5px;
	line-height: 1.85;
	color: #2b2f38;
}
.single-post .entry-content p { padding: 12px 0; }
.single-post .entry-content h2 {
	font-size: 27px;
	line-height: 1.3;
	margin: 36px 0 14px;
	color: #0a083b;
	font-weight: 700;
	letter-spacing: -.4px;
}
.single-post .entry-content h3 {
	font-size: 22px;
	line-height: 1.35;
	margin: 30px 0 12px;
	color: #0a083b;
	font-weight: 700;
}
.single-post .entry-content a { color: #1950d1; text-decoration: none; }
.single-post .entry-content a:hover { color: #143fa6; }
.single-post .entry-content img { border-radius: 12px; }
.single-post .entry-content blockquote {
	border-left: 3px solid #1950d1;
	background: #f6f8fc;
	margin: 28px 0;
	padding: 18px 24px;
	border-radius: 0 8px 8px 0;
	color: #0a083b;
	font-style: normal;
}
.single-post .entry-content ul,
.single-post .entry-content ol { padding-left: 22px; }
.single-post .entry-content li { padding: 4px 0; }

/* Tags como chips (pílulas), sem sombra */
.single-post .post-tags {
	max-width: 760px;
	margin: 40px auto 0;
	padding-top: 28px;
	border-top: 1px solid #e6e8ee;
}
.single-post .post-tags h5 { margin-bottom: 14px; color: #0a083b; font-weight: 600; }
.single-post .post-tags .tags-links { padding: 0; }
.single-post .post-tags .tags-links a {
	display: inline-block;
	margin: 0 8px 8px 0;
	padding: 6px 14px;
	background: #f1f3f8;
	border: 1px solid #e6e8ee;
	border-radius: 20px;
	color: #3b4252;
	font-size: 13.5px;
	text-decoration: none;
}
.single-post .post-tags .tags-links a:hover {
	background: #1950d1;
	border-color: #1950d1;
	color: #ffffff;
}

/* =========================================================================
 * 3. SIDEBAR (listagem + post único) — não afeta o rodapé
 * ========================================================================= */
.widget-area .widget {
	background: #ffffff;
	border: 1px solid #e6e8ee;
	border-radius: 12px;
	padding: 22px 22px 20px;
	margin-bottom: 24px;
	box-shadow: none;
}
.widget-area .widget:last-child { margin-bottom: 0; }

.widget-area .widget .widget-title,
.widget-area .widget-title {
	font-size: 17px;
	font-weight: 600;
	color: #0a083b;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eef0f4;
	text-transform: none;
	letter-spacing: -.2px;
}

/* Listas (posts recentes, categorias, arquivos, etc.) */
.widget-area .widget ul { padding-left: 0; margin: 0; }
.widget-area .widget ul li {
	list-style: none;
	padding: 10px 0;
	border-bottom: 1px solid #f0f2f6;
	font-size: 15px;
	line-height: 1.5;
}
.widget-area .widget ul li:last-child { border-bottom: 0; padding-bottom: 0; }
.widget-area .widget ul li a {
	color: #3b4252;
	text-decoration: none;
}
.widget-area .widget ul li a:hover { color: #1950d1; }

/* Contador (ex.: "(3)") ao lado dos itens */
.widget-area .widget ul li .post-count,
.widget-area .widget ul li .count {
	color: #9aa1ad;
	font-size: 13px;
}

/* Busca: cantos consistentes, sem transição */
.widget-area .widget input[type="search"] {
	height: 46px;
	border: 1px solid #e6e8ee;
	border-radius: 8px;
}
.widget-area .widget input[type="search"]:focus { border-color: #1950d1; }
.widget-area .widget input.search-submit {
	border-radius: 8px;
	transition: none;
	font-weight: 600;
	padding: 10px 20px;
}
.widget-area .widget input.search-submit:hover {
	background-color: #143fa6;
	border-color: #143fa6;
}

/* Nuvem de tags no widget: chips iguais aos do post */
.widget-area .widget .tagcloud a {
	display: inline-block;
	margin: 0 6px 8px 0;
	padding: 6px 12px;
	background: #f1f3f8;
	border: 1px solid #e6e8ee;
	border-radius: 20px;
	color: #3b4252;
	font-size: 13px !important;
	text-decoration: none;
}
.widget-area .widget .tagcloud a:hover {
	background: #1950d1;
	border-color: #1950d1;
	color: #ffffff;
}

/* =========================================================================
 * 4. PERFIL PÚBLICO (professor/aluno) — Tutor LMS
 *    Cap de largura em 1280px (o container do Tutor vai a 1320px por padrão).
 *    Escopo restrito ao perfil: não afeta catálogo de cursos nem outras páginas.
 * ========================================================================= */
.tutor-user-public-profile .tutor-container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

/* =========================================================================
 * 5. PÁGINA DE BLOG "OXTON NEWS" (home.php)
 * ========================================================================= */

/* ---- Hero (150px, com imagem de fundo) ---- */
.ox-hero {
	background:
		linear-gradient(90deg, rgba(10, 16, 48, .92) 0%, rgba(20, 35, 95, .72) 60%, rgba(28, 46, 119, .55) 100%),
		url("../images/news-hero.webp") center/cover no-repeat,
		#0a1030;
	color: #fff;
	width: 100%;
}
.ox-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
	min-height: 150px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.ox-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 11px;
	font-weight: 600;
	color: #9db4ff;
}
.ox-hero__title {
	font-size: 34px;
	line-height: 1.05;
	font-weight: 700;
	color: #fff;
	margin: 6px 0 6px;
	letter-spacing: -.8px;
}
.ox-hero__sub {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .82);
	max-width: 460px;
	margin: 0;
}
.ox-hero__aside {
	align-self: stretch;
	display: flex;
	align-items: center;
	padding-left: 30px;
	border-left: 1px solid rgba(255, 255, 255, .18);
}
.ox-hero__vertical {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, .6);
}
@media (max-width: 780px) {
	.ox-hero__title { font-size: 26px; }
	.ox-hero__aside { display: none; }
	.ox-hero__sub { display: none; }
}

/* ---- Layout de duas colunas ---- */
.ox-blog {
	max-width: 1280px;
	margin: 0 auto;
	padding: 34px 20px 60px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: start;
}
@media (max-width: 992px) {
	.ox-blog { grid-template-columns: 1fr; }
}

/* ---- Barra de ferramentas ---- */
.ox-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
}
.ox-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.ox-tab {
	border: 1px solid #e6e8ee;
	background: #fff;
	color: #4b5563;
	font-size: 13.5px;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 22px;
	cursor: pointer;
	line-height: 1;
}
.ox-tab:hover { border-color: #c7ccd8; color: #0a083b; }
.ox-tab.is-active {
	background: #1950d1;
	border-color: #1950d1;
	color: #fff;
}
.ox-controls { display: flex; align-items: center; gap: 10px; }
.ox-sort__select {
	height: 40px;
	border: 1px solid #e6e8ee;
	border-radius: 8px;
	padding: 0 32px 0 14px;
	font-size: 13.5px;
	color: #0a083b;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}
.ox-view { display: flex; border: 1px solid #e6e8ee; border-radius: 8px; overflow: hidden; }
.ox-view__btn {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 0;
	color: #9aa1ad;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ox-view__btn + .ox-view__btn { border-left: 1px solid #e6e8ee; }
.ox-view__btn.is-active { background: #eef2fc; color: #1950d1; }
.ox-search { position: relative; }
.ox-search__input {
	height: 40px;
	width: 220px;
	max-width: 46vw;
	border: 1px solid #e6e8ee;
	border-radius: 8px;
	padding: 0 42px 0 14px;
	font-size: 13.5px;
	color: #0a083b;
	outline: none;
}
.ox-search__input:focus { border-color: #1950d1; }
.ox-search__btn {
	position: absolute;
	right: 4px;
	top: 4px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 6px;
	background: #1950d1;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---- Grade de cards ---- */
.ox-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ox-grid.is-loading { opacity: .55; }
@media (max-width: 1100px) { .ox-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ox-grid { grid-template-columns: 1fr; } }

.ox-card {
	background: #fff;
	border: 1px solid #e6e8ee;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.ox-card:hover { border-color: #c7ccd8; }
.ox-card__thumb {
	position: relative;
	display: block;
	line-height: 0;
	background: #eef0f4;
}
.ox-card__thumb img,
.ox-card__thumb-ph {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}
.ox-card__thumb-ph { background: linear-gradient(135deg, #dfe3ea, #eef0f4); }
.ox-card__badge {
	position: absolute;
	left: 14px;
	top: 14px;
	background: rgba(10, 8, 40, .72);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .6px;
	padding: 5px 11px;
	border-radius: 6px;
	line-height: 1;
}
.ox-card__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}
.ox-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	color: #8a90a0;
	font-size: 12.5px;
	margin-bottom: 10px;
}
.ox-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.ox-card__title {
	font-size: 15.5px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: -.2px;
	margin: 0 0 10px;
}
.ox-card__title a { color: #0a083b; text-decoration: none; }
.ox-card__title a:hover { color: #1950d1; }
.ox-card__excerpt {
	color: #6b7280;
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ox-card__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px solid #f0f2f6;
}
.ox-card__author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #4b5563;
	font-weight: 500;
	min-width: 0;
}
.ox-card__avatar { border-radius: 50%; width: 30px; height: 30px; }
.ox-card__author span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ox-card__more {
	color: #1950d1;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}
.ox-card__more:hover { color: #143fa6; }

/* ---- Modo lista ---- */
.ox-grid.is-list { grid-template-columns: 1fr; gap: 18px; }
.ox-grid.is-list .ox-card { flex-direction: row; align-items: stretch; }
.ox-grid.is-list .ox-card__thumb {
	flex: 0 0 300px;
	max-width: 300px;
	aspect-ratio: 16 / 10;
	align-self: stretch;
}
.ox-grid.is-list .ox-card__thumb img,
.ox-grid.is-list .ox-card__thumb-ph {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
}
.ox-grid.is-list .ox-card__body { flex: 1 1 auto; padding: 20px 24px; justify-content: center; }
@media (max-width: 640px) {
	.ox-grid.is-list .ox-card { flex-direction: column; }
	.ox-grid.is-list .ox-card__thumb { flex: none; max-width: none; width: 100%; aspect-ratio: 16 / 10; }
}

/* ---- Carregar mais / vazio ---- */
.ox-loadmore-wrap { text-align: center; margin-top: 34px; }
.ox-loadmore {
	border: 1px solid #1950d1;
	background: #fff;
	color: #1950d1;
	font-weight: 600;
	font-size: 14.5px;
	padding: 12px 34px;
	border-radius: 26px;
	cursor: pointer;
}
.ox-loadmore:hover { background: #1950d1; color: #fff; }
.ox-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #6b7280;
	padding: 40px 0;
	font-size: 15px;
}

/* ---- Sidebar ---- */
.ox-sidebar { display: flex; flex-direction: column; gap: 22px; }
.ox-widget {
	background: #fff;
	border: 1px solid #e6e8ee;
	border-radius: 14px;
	padding: 20px 20px 18px;
}
.ox-widget__title {
	font-size: 16px;
	font-weight: 700;
	color: #0a083b;
	margin: 0 0 14px;
	letter-spacing: -.2px;
}
.ox-catlist { list-style: none; margin: 0; padding: 0; }
.ox-catlist li + li { border-top: 1px solid #f0f2f6; }
.ox-catlink {
	width: 100%;
	background: none;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
	font-size: 14.5px;
	color: #3b4252;
	text-align: left;
}
.ox-catlink:hover { color: #1950d1; }
.ox-catlink.is-active { color: #1950d1; font-weight: 600; }
.ox-count { color: #9aa1ad; font-size: 13px; }
.ox-catlink.is-active .ox-count { color: #1950d1; }

/* Mais lidos */
.ox-poplist { list-style: none; margin: 0; padding: 0; }
.ox-pop { display: flex; gap: 12px; padding: 12px 0; }
.ox-pop + .ox-pop { border-top: 1px solid #f0f2f6; }
.ox-pop__thumb { flex: 0 0 60px; line-height: 0; }
.ox-pop__thumb img, .ox-pop__ph {
	width: 60px; height: 60px; object-fit: cover; border-radius: 8px; display: block;
	background: #eef0f4;
}
.ox-pop__body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.ox-pop__title { font-size: 13.5px; line-height: 1.4; color: #0a083b; font-weight: 500; text-decoration: none; }
.ox-pop__title:hover { color: #1950d1; }
.ox-pop__date { font-size: 12px; color: #9aa1ad; margin-top: 4px; }

/* Newsletter (só visual) */
.ox-news {
	background: linear-gradient(135deg, #14235f, #1950d1);
	border: 0;
	color: #fff;
}
.ox-news__title { font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.ox-news__sub { font-size: 13.5px; color: rgba(255, 255, 255, .82); margin: 0 0 14px; line-height: 1.5; }
.ox-news__form { position: relative; }
.ox-news__input {
	width: 100%;
	height: 46px;
	border: 0;
	border-radius: 8px;
	padding: 0 52px 0 14px;
	font-size: 14px;
	color: #0a083b;
	outline: none;
}
.ox-news__btn {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 6px;
	background: #f59e0b;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* =========================================================================
 * 6. POST ÚNICO — layout Oxton (conteúdo + sidebar)  [single.php]
 * ========================================================================= */
.oxpost-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 42px 20px 64px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
	align-items: start;
}
@media (max-width: 992px) {
	.oxpost-wrap { grid-template-columns: 1fr; }
}

/* Selo de categoria (âmbar) */
.oxpost__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #f59e0b;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 14px;
}
.oxpost__eyebrow:hover { color: #d98407; }
.oxpost__bar { width: 28px; height: 3px; background: #f59e0b; display: inline-block; border-radius: 2px; }

.oxpost__title {
	font-size: 34px;
	line-height: 1.2;
	font-weight: 700;
	color: #0a083b;
	letter-spacing: -.6px;
	margin: 0 0 16px;
}
@media (max-width: 640px) { .oxpost__title { font-size: 26px; } }

.oxpost__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	color: #6b7280;
	font-size: 14px;
	margin-bottom: 24px;
}
.oxpost__meta span { display: inline-flex; align-items: center; gap: 7px; }

.oxpost__cover { margin-bottom: 30px; }
.oxpost__cover img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 14px;
	display: block;
}

/* Conteúdo: ocupa toda a coluna, alinhado à esquerda (sobrescreve a seção 2) */
.oxpost .entry-content,
.oxpost__content {
	max-width: none;
	margin: 0;
}

.oxpost__tags {
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid #e6e8ee;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.oxpost__tags a {
	padding: 6px 14px;
	background: #f1f3f8;
	border: 1px solid #e6e8ee;
	border-radius: 20px;
	color: #3b4252;
	font-size: 13px;
	text-decoration: none;
}
.oxpost__tags a:hover { background: #1950d1; border-color: #1950d1; color: #fff; }

/* ---- Sidebar do post ---- */
.oxpost-side { display: flex; flex-direction: column; gap: 22px; }

.oxside-search { position: relative; }
.oxside-search__input {
	width: 100%;
	height: 46px;
	border: 1px solid #e6e8ee;
	border-radius: 10px;
	padding: 0 54px 0 16px;
	font-size: 14px;
	color: #0a083b;
	outline: none;
}
.oxside-search__input:focus { border-color: #1950d1; }
.oxside-search__btn {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 40px;
	height: 36px;
	border: 0;
	border-radius: 8px;
	background: #1950d1;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.oxside {
	background: #fff;
	border: 1px solid #e6e8ee;
	border-radius: 14px;
	padding: 18px 18px 10px;
}
.oxside__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.oxside__head h4 { font-size: 16px; font-weight: 700; color: #0a083b; margin: 0; letter-spacing: -.2px; }
.oxside__head a { font-size: 12.5px; color: #1950d1; text-decoration: none; font-weight: 600; white-space: nowrap; }
.oxside__head a:hover { color: #143fa6; }

/* Mais posts */
.oxside__posts { list-style: none; margin: 0; padding: 0; }
.oxside-post { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid #f0f2f6; }
.oxside-post:first-child { border-top: 0; }
.oxside-post__thumb { flex: 0 0 64px; line-height: 0; }
.oxside-post__thumb img, .oxside-post__ph {
	width: 64px; height: 64px; object-fit: cover; border-radius: 10px; display: block; background: #eef0f4;
}
.oxside-post__body { display: flex; flex-direction: column; min-width: 0; }
.oxside-post__title { font-size: 13.5px; line-height: 1.4; color: #0a083b; font-weight: 500; text-decoration: none; }
.oxside-post__title:hover { color: #1950d1; }
.oxside-post__date { font-size: 12px; color: #9aa1ad; margin-top: 5px; }
.oxside-post__author { font-size: 12px; color: #9aa1ad; }

/* Categorias */
.oxside__cats { list-style: none; margin: 0; padding: 0; }
.oxside__cats li { border-top: 1px solid #f0f2f6; }
.oxside__cats li:first-child { border-top: 0; }
.oxside__cats a { display: block; padding: 11px 0; color: #3b4252; font-size: 14.5px; text-decoration: none; }
.oxside__cats a:hover { color: #1950d1; }
.oxside__cats a span { color: #9aa1ad; font-size: 13px; }

/* =========================================================================
 * 7. LISTA DE PROFESSORES (Tutor) — nome do card menor
 * ========================================================================= */
.tutor-instructor-list .tutor-instructor-title {
	font-size: 17px;
	line-height: 1.3;
}

/* =========================================================================
 * 9. LOGIN / CADASTRO (Tutor) — melhoria só de estilo (sem mexer no layout)
 *    Escopo: formulários do Tutor. Não altera campos, Google login ou fluxo.
 * ========================================================================= */
.tutor-login-form-wrapper,
.tutor-registration-wrap {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
	background: #ffffff;
	border: 1px solid #e6e8ee;
	border-radius: 16px;
	box-shadow: none;
}

/* Rótulos */
.tutor-login-form-wrapper .tutor-label,
.tutor-registration-wrap .tutor-label {
	color: #0a083b;
	font-weight: 500;
	margin-bottom: 6px;
}

/* Campos */
.tutor-login-form-wrapper .tutor-form-control,
.tutor-login-form-wrapper .tutor-input,
.tutor-registration-wrap .tutor-form-control,
.tutor-registration-wrap .tutor-input {
	min-height: 48px;
	border: 1px solid #e6e8ee;
	border-radius: 10px;
	color: #0a083b;
	transition: none;
}
.tutor-login-form-wrapper .tutor-form-control:focus,
.tutor-login-form-wrapper .tutor-input:focus,
.tutor-registration-wrap .tutor-form-control:focus,
.tutor-registration-wrap .tutor-input:focus {
	border-color: #1950d1;
	box-shadow: none;
	outline: none;
}

/* Botão primário (Criar conta / Entrar) */
.tutor-login-form-wrapper .tutor-btn-primary,
.tutor-registration-wrap .tutor-btn-primary {
	background-color: #1950d1;
	border-color: #1950d1;
	border-radius: 10px;
	font-weight: 600;
	min-height: 50px;
	box-shadow: none;
	transition: none;
}
.tutor-login-form-wrapper .tutor-btn-primary:hover,
.tutor-registration-wrap .tutor-btn-primary:hover {
	background-color: #143fa6;
	border-color: #143fa6;
}

/* Links (Entrar / Cadastre-se / Esqueceu a senha) */
.tutor-login-form-wrapper .tutor-btn-link,
.tutor-registration-wrap .tutor-btn-link {
	color: #1950d1;
	font-weight: 600;
	text-decoration: none;
}
.tutor-login-form-wrapper .tutor-btn-link:hover,
.tutor-registration-wrap .tutor-btn-link:hover {
	color: #143fa6;
}

/* =========================================================================
 * 10. SEÇÃO DESTAQUE DE POSTS  [oxton_posts_featured] — 1 grande + N pequenos
 * ========================================================================= */
.oxfeat { max-width: 1250px; margin: 0 auto; }
.oxfeat__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}
.oxfeat__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
}
.oxfeat__bar { width: 28px; height: 3px; background: #1950d1; border-radius: 2px; display: inline-block; }
.oxfeat__heading { font-size: 30px; font-weight: 700; color: #0a083b; margin: 0 0 8px; letter-spacing: -.6px; }
.oxfeat__sub { font-size: 15px; color: #6b7280; margin: 0; line-height: 1.55; }
.oxfeat__all {
	flex-shrink: 0;
	background: #eef2fc;
	color: #1950d1;
	font-size: 13.5px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 24px;
	text-decoration: none;
	white-space: nowrap;
	margin-top: 4px;
}
.oxfeat__all:hover { background: #1950d1; color: #fff; }
@media (max-width: 640px) {
	.oxfeat__top { flex-direction: column; }
	.oxfeat__heading { font-size: 24px; }
}

.oxfeat__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 24px;
	align-items: stretch;
}
@media (max-width: 900px) { .oxfeat__grid { grid-template-columns: 1fr; } }

/* Destaque grande */
.oxfeat__main {
	background: #fff;
	border: 1px solid #e6e8ee;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.oxfeat__main:hover { border-color: #c7ccd8; }
.oxfeat__main-thumb { position: relative; display: block; line-height: 0; background: #eef0f4; }
.oxfeat__main-thumb img, .oxfeat__main-ph {
	width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
}
.oxfeat__badge {
	position: absolute; left: 16px; top: 16px;
	background: rgba(10, 8, 40, .72); color: #fff;
	font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px;
	padding: 6px 12px; border-radius: 6px; line-height: 1;
}
.oxfeat__main-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1 1 auto; }
.oxfeat__meta { display: flex; gap: 16px; color: #8a90a0; font-size: 12.5px; margin-bottom: 12px; }
.oxfeat__meta span { display: inline-flex; align-items: center; gap: 6px; }
.oxfeat__main-title { font-size: 24px; line-height: 1.28; font-weight: 700; letter-spacing: -.4px; margin: 0 0 12px; }
.oxfeat__main-title a { color: #0a083b; text-decoration: none; }
.oxfeat__main-title a:hover { color: #1950d1; }
.oxfeat__main-excerpt {
	color: #6b7280; font-size: 14.5px; line-height: 1.7; margin: 0 0 16px;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.oxfeat__btn {
	margin-top: auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	background: #1950d1;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	padding: 11px 22px;
	border-radius: 24px;
	text-decoration: none;
}
.oxfeat__btn:hover { background: #143fa6; color: #fff; }

/* Coluna lateral (pequenos) */
.oxfeat__side { display: flex; flex-direction: column; gap: 14px; }
.oxfeat-mini {
	display: flex; gap: 14px; align-items: center;
	background: #fff; border: 1px solid #e6e8ee; border-radius: 14px; padding: 12px;
	text-decoration: none; flex: 1 1 0;
}
.oxfeat-mini:hover { border-color: #c7ccd8; }
.oxfeat-mini__thumb { flex: 0 0 116px; line-height: 0; }
.oxfeat-mini__thumb img, .oxfeat-mini__ph {
	width: 116px; height: 92px; object-fit: cover; border-radius: 10px; display: block; background: #eef0f4;
}
.oxfeat-mini__body { display: flex; flex-direction: column; min-width: 0; }
.oxfeat-mini__cat { color: #1950d1; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.oxfeat-mini__title { color: #0a083b; font-size: 15px; font-weight: 600; line-height: 1.35; }
.oxfeat-mini:hover .oxfeat-mini__title { color: #1950d1; }
.oxfeat-mini__date { color: #9aa1ad; font-size: 12px; margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) {
	.oxfeat-mini { flex: 0 0 auto; }
}

/* =========================================================================
 * 8. FOOTER — apenas VISUAL (estrutura nativa do tema, funcionalidade intacta)
 *    Escopo: .footer-widgets e #colophon. Não altera menu/widgets/copyright.
 * ========================================================================= */
.footer-widgets,
#colophon.site-footer {
	background: #1f1e2c;
	box-shadow: none;
}
.footer-widgets { padding: 56px 0 20px; }

/* Logo do footer */
.footer-widgets .logo-footer { margin-bottom: 20px; }

/* Títulos dos widgets: âmbar, maiúsculo, com tracinho âmbar */
.footer-widgets .widget-title,
.footer-widgets .widget .widget-title {
	color: #f59e0b;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 22px;
	padding-bottom: 12px;
	position: relative;
}
.footer-widgets .widget-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 2px;
	background: #f59e0b;
}

/* Texto e links dos widgets */
.footer-widgets .widget,
.footer-widgets .widget p,
.footer-widgets .widget li {
	color: rgba(255, 255, 255, .62);
}
.footer-widgets .widget ul { list-style: none; padding-left: 0; margin: 0; }
.footer-widgets .widget li { margin-bottom: 12px; line-height: 1.6; }
.footer-widgets .widget a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer-widgets .widget a:hover { color: #ffffff; }

/* Ícones sociais (widget de redes) — círculos com borda */
#footer-socialmedia a,
.footer-widgets .widget .social-icons a,
#colophon .site-info a[href*="facebook"],
#colophon .site-info a[href*="instagram"],
#colophon .site-info a[href*="linkedin"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 50%;
	color: #ffffff;
	margin-right: 10px;
	text-decoration: none;
}
#footer-socialmedia a:hover,
.footer-widgets .widget .social-icons a:hover {
	background: #f59e0b;
	border-color: #f59e0b;
	color: #1f1e2c;
}

/* Barra inferior */
#colophon.site-footer { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 22px; padding-bottom: 22px; }
#colophon .copyright { color: rgba(255, 255, 255, .5); font-size: 13px; }
#colophon #secondary-menu li a { color: rgba(255, 255, 255, .8); text-decoration: none; }
#colophon #secondary-menu li a:hover { color: #ffffff; }
