/*
Theme Name: Purainfo V1
Theme URI: https://purainfo.com.br/
Author: Purainfo
Author URI: https://purainfo.com.br/
Description: Tema editorial leve para o Purainfo, focado em tutoriais, guias e artigos de tecnologia.
Version: 1.1.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: purainfo-v1
*/

:root {
  color-scheme: light;
  --pi-bg: #f4f7fb;
  --pi-surface: #ffffff;
  --pi-surface-soft: #f8fafd;
  --pi-text: #17202b;
  --pi-muted: #637084;
  --pi-border: #dce4ee;
  --pi-border-soft: #edf1f6;
  --pi-blue: #1768c4;
  --pi-blue-dark: #0f4f9e;
  --pi-teal: #148a99;
  --pi-green: #169b62;
  --pi-orange: #e9662c;
  --pi-shadow: 0 16px 40px rgba(22, 34, 50, 0.08);
  --pi-wrap: 1180px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --pi-bg: #0f151d;
  --pi-surface: #151e29;
  --pi-surface-soft: #101821;
  --pi-text: #edf4fb;
  --pi-muted: #9fb0c4;
  --pi-border: #293645;
  --pi-border-soft: #223040;
  --pi-blue: #78b7ff;
  --pi-blue-dark: #a8d0ff;
  --pi-teal: #4fc3d4;
  --pi-green: #58d195;
  --pi-orange: #ff9a68;
  --pi-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--pi-bg);
  color: var(--pi-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: var(--pi-blue);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--pi-blue-dark);
  text-decoration: underline;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pi-container {
  width: min(100% - 32px, var(--pi-wrap));
  margin-inline: auto;
}

.site-header {
  background: var(--pi-surface);
  border-bottom: 1px solid var(--pi-border);
  padding-top: 76px;
}

.site-header__sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--pi-surface) 94%, transparent);
  border-bottom: 1px solid var(--pi-border);
  box-shadow: 0 10px 28px rgba(22, 34, 50, 0.08);
  backdrop-filter: blur(12px);
}

.admin-bar .site-header__sticky {
  top: 32px;
}

.site-header__main {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-branding {
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pi-blue-dark);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-logo:hover,
.site-logo:focus {
  text-decoration: none;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  max-height: 54px;
  width: auto;
}

.site-logo__mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pi-blue), #28a5cf);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(23, 104, 196, 0.25);
}

.site-description {
  margin: 6px 0 0;
  color: var(--pi-muted);
  font-size: 0.85rem;
}

.header-search {
  flex: 1 1 360px;
  max-width: 440px;
}

.theme-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 12px 0 8px;
  background: var(--pi-surface-soft);
  color: var(--pi-muted);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px var(--pi-border-soft);
}

.theme-toggle:hover,
.theme-toggle:focus {
  background: var(--pi-surface);
  box-shadow: inset 0 0 0 1px var(--pi-blue);
  color: var(--pi-blue);
}

.theme-toggle__icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 104, 196, 0.12);
}

.theme-toggle__icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid currentColor;
  box-shadow: inset -4px -2px 0 currentColor;
}

html[data-theme="dark"] .theme-toggle__icon::before {
  box-shadow: inset 0 0 0 5px currentColor;
}

.search-form {
  display: flex;
  min-height: 42px;
  border: 1px solid var(--pi-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--pi-surface-soft);
}

.search-form .search-field {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0 14px;
  color: var(--pi-text);
  outline: 0;
}

.search-form .search-submit {
  border: 0;
  padding: 0 16px;
  background: transparent;
  color: var(--pi-muted);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.search-form .search-submit:hover,
.search-form .search-submit:focus {
  color: var(--pi-blue);
}

.site-nav {
  background: var(--pi-surface);
  border-top: 1px solid var(--pi-border-soft);
}

.primary-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  white-space: nowrap;
}

.primary-menu a {
  display: block;
  color: var(--pi-text);
  font-size: 0.94rem;
  font-weight: 600;
}

.primary-menu a:hover,
.primary-menu a:focus {
  color: var(--pi-blue);
}

.site-main {
  flex: 1;
  padding-block: 26px 42px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.featured-card {
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #061a36, #0d356b 56%, #147f91);
  border: 1px solid var(--pi-border);
  border-radius: 8px;
  box-shadow: var(--pi-shadow);
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 45%, rgba(67, 150, 255, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(4, 14, 29, 0.4), rgba(4, 14, 29, 0.92) 45%, rgba(4, 14, 29, 0.84));
}

.featured-card > .featured-card__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #062147, #0f4f9e 55%, #1591a3);
}

.featured-card > .featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.featured-card__content {
  width: min(600px, 68%);
  padding: clamp(22px, 4vw, 34px);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.featured-card__content .cat-links a,
.featured-card__content .pi-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  border-radius: 7px;
  padding: 0 10px;
  background: #1688f0;
  color: #fff;
}

.featured-card__content .post-meta,
.featured-card__content .featured-card__excerpt {
  color: rgba(255, 255, 255, 0.86);
}

.pi-kicker,
.cat-links a,
.post-card__category {
  color: var(--pi-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.featured-card__title,
.entry-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.featured-card__title a,
.post-card__title a,
.rank-list a,
.compact-link a {
  color: inherit;
}

.featured-card__title {
  color: #fff;
}

.featured-card__excerpt {
  margin: 0;
  max-width: 52ch;
  color: var(--pi-muted);
  font-size: 1.03rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--pi-muted);
  font-size: 0.85rem;
}

.rank-panel,
.pi-card,
.widget,
.ad-slot,
.post-card,
.page-card,
.comments-area,
.comment-respond {
  background: var(--pi-surface);
  border: 1px solid var(--pi-border);
  border-radius: 8px;
}

.rank-panel {
  padding: 20px;
}

.section-title,
.rank-panel__title,
.widget-title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rank-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.rank-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid var(--pi-border-soft);
}

.rank-list li:first-child {
  padding-top: 0;
}

.rank-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rank-list__number {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--pi-surface-soft);
  color: var(--pi-blue);
  font-weight: 800;
  font-size: 0.86rem;
}

.rank-list__title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
}

.ad-slot {
  min-height: 94px;
  margin-block: 20px;
  display: grid;
  place-items: center;
  border-style: dashed;
  color: var(--pi-muted);
  text-align: center;
  padding: 18px;
}

.ad-slot small {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-ad-slot {
  margin-block: 20px;
  min-height: 90px;
}

.single-ad-widget {
  width: 100%;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.home-section {
  margin-top: 20px;
}

.section-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.section-link {
  color: var(--pi-blue);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.post-card {
  overflow: hidden;
  min-width: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 104, 196, 0.34);
  box-shadow: var(--pi-shadow);
}

.post-card__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #dbeafe, #c6f3ef);
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  min-height: 138px;
  padding: 15px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.post-card__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.post-card__title a {
  display: block;
}

.post-card__excerpt {
  margin: 0;
  color: var(--pi-muted);
  font-size: 0.92rem;
}

.post-card--list {
  display: grid;
  grid-template-columns: 112px 1fr;
}

.post-card--list .post-card__thumb {
  aspect-ratio: auto;
  min-height: 100%;
}

.sidebar {
  display: grid;
  gap: 18px;
}

.widget {
  padding: 20px;
}

.widget ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.widget a {
  color: var(--pi-text);
  font-weight: 650;
}

.newsletter-card {
  display: grid;
  gap: 12px;
  text-align: center;
}

.newsletter-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--pi-surface-soft);
  color: var(--pi-blue);
  font-size: 1.5rem;
}

.newsletter-card p {
  margin: 0;
  color: var(--pi-muted);
  font-size: 0.94rem;
}

.newsletter-card input {
  width: 100%;
  border: 1px solid var(--pi-border);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--pi-surface-soft);
}

.newsletter-card form {
  display: grid;
  gap: 10px;
}

.pi-button,
.wp-block-button__link,
.comment-form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--pi-blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.pi-button:hover,
.pi-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.comment-form .submit:hover,
.comment-form .submit:focus {
  background: var(--pi-blue-dark);
  color: #fff;
  text-decoration: none;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.topic-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--pi-border);
  border-radius: 8px;
  padding: 0 11px;
  background: var(--pi-surface-soft);
  color: var(--pi-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.related-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.related-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--pi-border-soft);
  border-radius: 8px;
  background: var(--pi-surface-soft);
  color: var(--pi-text);
}

.related-item:hover,
.related-item:focus {
  border-color: rgba(23, 104, 196, 0.4);
  color: var(--pi-blue);
  text-decoration: none;
}

.related-item__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, #dbeafe, #c6f3ef);
}

.related-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-item__content {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.related-item__title {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.3;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-item__meta {
  color: var(--pi-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.compact-link {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.archive-header,
.page-card,
.entry-content,
.comments-area,
.comment-respond {
  padding: clamp(20px, 4vw, 34px);
}

.archive-header,
.page-card {
  margin-bottom: 20px;
}

.page-card {
  background: var(--pi-surface);
  border: 1px solid var(--pi-border);
  border-radius: 8px;
}

.archive-description {
  margin-top: 10px;
  color: var(--pi-muted);
}

.archive-description p {
  margin-bottom: 0;
}

.entry-content {
  background: var(--pi-surface);
  border: 1px solid var(--pi-border);
  border-radius: 8px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.entry-content p,
.entry-content li {
  color: var(--pi-text);
}

.entry-content pre,
.entry-content code {
  background: #101820;
  color: #e8f4ff;
  border-radius: 6px;
}

.entry-content code {
  padding: 0.15em 0.35em;
}

.entry-content pre {
  overflow-x: auto;
  padding: 16px;
}

.entry-content .wp-block-image,
.entry-content .wp-block-gallery {
  margin-block: 24px;
}

.entry-content .wp-block-image img,
.entry-content .wp-block-gallery img {
  border: 1px solid var(--pi-border);
  border-radius: 8px;
  background: var(--pi-surface-soft);
  box-shadow: 0 10px 26px rgba(22, 34, 50, 0.08);
}

.entry-content .wp-block-image a,
.entry-content .wp-block-gallery a {
  display: block;
}

.entry-content .wp-block-gallery {
  --wp--style--unstable-gallery-gap: 14px;
  gap: 14px;
}

.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 1;
}

.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
  width: 100%;
}

.entry-content figure figcaption,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
.entry-content .wp-block-gallery.has-nested-images figcaption {
  margin: 8px 0 0;
  color: var(--pi-muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: static;
  padding: 0;
  background: transparent;
}

.entry-content .wp-block-image.alignfull,
.entry-content .wp-block-gallery.alignfull {
  margin-inline: 0;
}

.post-navigation,
.posts-navigation {
  margin-top: 24px;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  min-width: 0;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a {
  min-height: 112px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid var(--pi-border);
  border-radius: 8px;
  background: var(--pi-surface);
  color: var(--pi-text);
  box-shadow: var(--pi-shadow);
}

.post-navigation a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 4px solid var(--pi-blue);
  opacity: 0.9;
}

.post-navigation .nav-next a::before {
  border-left: 0;
  border-right: 4px solid var(--pi-blue);
}

.post-navigation a:hover,
.post-navigation a:focus {
  border-color: rgba(23, 104, 196, 0.45);
  color: var(--pi-blue);
  text-decoration: none;
  transform: translateY(-2px);
}

.nav-subtitle {
  display: block;
  color: var(--pi-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-title {
  display: block;
  color: inherit;
  font-size: 1.04rem;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.site-footer {
  margin-top: auto;
  background: #101820;
  color: #dce7f4;
  padding-block: 30px;
}

.single-featured-media {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--pi-border);
  border-radius: 8px;
  background: var(--pi-surface);
}

.single-featured-media img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.site-footer a {
  color: #dce7f4;
}

.site-footer span {
  color: #9fb0c4;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .home-hero,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .pi-container {
    width: min(100% - 24px, var(--pi-wrap));
  }

  .site-header {
    padding-top: 132px;
  }

  .site-header__main {
    min-height: auto;
    padding-block: 12px;
    flex-wrap: wrap;
  }

  .header-search {
    flex: 1 1 100%;
    max-width: none;
    order: 3;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .featured-card {
    min-height: 420px;
    align-items: flex-end;
  }

  .featured-card::after {
    background: linear-gradient(0deg, rgba(4, 14, 29, 0.94), rgba(4, 14, 29, 0.22));
  }

  .featured-card__content {
    width: 100%;
    margin-left: 0;
  }

  .entry-content .wp-block-gallery.has-nested-images {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .entry-content .wp-block-gallery.has-nested-images figure.wp-block-image {
    width: 100% !important;
    max-width: none !important;
  }

  .post-grid,
  .compact-grid,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header__sticky {
    top: 46px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .primary-menu {
    gap: 18px;
  }

  .site-header {
    padding-top: 124px;
  }

  .site-logo__mark {
    width: 34px;
    height: 34px;
  }

  .theme-toggle__label {
    display: none;
  }

  .featured-card__title,
  .entry-title {
    font-size: 2rem;
  }

  .post-card--list {
    grid-template-columns: 1fr;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .post-navigation .nav-next {
    text-align: left;
  }

  .post-navigation .nav-next a::before {
    border-right: 0;
    border-left: 4px solid var(--pi-blue);
  }
}

/* --- REGRAS DO CARD (TÍTULO VISÍVEL NO BLOCO BRANCO) --- */
.post-card__body {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  gap: 10px;
}

.post-card__title {
  display: block !important;
  visibility: visible !important;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
}

.post-card__title a {
  color: var(--pi-text) !important;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__title a:hover {
  color: var(--pi-blue) !important;
}

/* --- FORÇAR EXIBIÇÃO DO TÍTULO DENTRO DO CARD BRANCO --- */
.post-grid .post-card {
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
}

.post-grid .post-card__body {
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	flex-grow: 1 !important;
	padding: 16px !important;
	gap: 10px !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.post-grid .post-card__title {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	margin: 0 !important;
	font-size: 1.05rem !important;
	line-height: 1.35 !important;
	font-weight: 700 !important;
}

.post-grid .post-card__title a {
	color: var(--pi-text, #17202b) !important;
	text-decoration: none !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

.post-grid .post-card__title a:hover {
	color: var(--pi-blue, #1768c4) !important;
}
