:root {
  /* Brand Colors */
  --color-blue-ocean: #138ce5;
  --color-black-olive: #060806;
  --color-mustard-yellow: #eba330;
  --color-red-tomato: #710304;

  /* Neutrals */
  --color-white: #ffffff;
  --color-black: #111911;
}

.blog-wrap, .post-wrap {

  margin: 0 auto;
  padding: 48px 16px;
}
.blog-wrap{
    padding: 100px 300px;
}
.blog-header{
    margin-top: 120px;
}
.blog-header h1 { margin-bottom: 8px;
font-size: 40px; color: var(--color-blue-ocean); }
.blog-header p { opacity: .85; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
 
  margin-top: 24px;
}

.post-card {
  border-radius: 16px; align-items: flex-end;
  overflow: hidden;
  border: 3px solid rgba(168, 168, 168, 0.089);
 
  background: rgba(255,255,255,0.03);
    transition: 0.3s ease;
}
.post-card:hover { border: 3px solid rgba(255,255,255,0.1);
box-shadow: 0px 0px 10px #00000034;
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block; 
}

.post-card-body {
  padding: 16px;display: grid;
  gap: 10px;
}
.post-card-body .btn{
    width: fit-content;
}
.post-meta {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.post-link {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
}

.post {
  
    padding: 120px 300px;
 
    margin: 0 auto;
}
.post span a{
    color: var(--color-blue-ocean);
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
   transition: 0.2s;
}
.post span a:hover{
    color: var(--color-black);
    text-decoration: none;  transition: 0.2s;
   
}
.post-content p a {
    color: var(--color-blue-ocean);
    font-weight: 900;
}

.post-header h1 { margin: 10px 0 12px; color: var(--color-blue-ocean); }
.post-intro { opacity: .9; }

.post-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}


.post-content h2 { margin-top: 22px; }
.post-cta {
  margin-top: 26px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}
.post-cta h3{
    color: var(--color-blue-ocean);
    font-size: 36px;
    margin-bottom: 0px;
}

.post-breadcrumb a {
  text-decoration: none;
  opacity: 0.9;
}
.post-cta .btn{
    margin-right: 20px;
}
/* Responsivo */
@media (max-width: 980px) {
    .blog-wrap {
    padding

: 100px 30px;
}
.post {
    padding: 200px 30px 50px;
    margin: 0 auto;
}.post-hero img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}.post-header h1 {
    font-size: 20px;
    margin: 10px 0 12px;
    margin-top: 20px;
    color: var(--color-blue-ocean);
}
.post-intro {
    opacity: .9;
    font-size
: 12px;
margin-bottom: 20px;
}
.post-cta {
    display: grid;
    margin-top: 26px;
    padding: 0px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}.hero-buttons {
        margin-top: 32px;
        display: flex;
        gap: 0px;
        TEXT-ALIGN: center;
    }
.post-hero{
    margin: 0px !important;
    padding: 0px !important;
}
.post-content p{
    font-size: 12px;
}
  .blog-grid { grid-template-columns: 1fr; }
  .post-card img { height: 220px; }
}
