/* === BLOCO: "O Caminho" (bloco-the-path) === */

/* Container principal */
.bloco-the-path {
    margin-bottom: 60px;
  }
  
  /* Título do bloco */
  .bloco-the-path-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1e1e1e;
  }
  
  /* Grade de cards */
  .bloco-the-path-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* Card */
  .bloco-the-path-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .bloco-the-path-card:hover {
    transform: scale(1.01);
  }
  
  /* Imagem */
  .bloco-the-path-thumb {
    display: block;
    width: 100%;
    min-height: 175px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
  }
  
  .bloco-the-path-thumb picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  .bloco-the-path-thumb picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Informações */
  .bloco-the-path-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
  }
  
  /* Categoria */
  .bloco-the-path-category {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.785rem;
    margin-bottom: 3px;
    transition: color 0.3s ease;
  }
  
  .bloco-the-path-category:hover {
    color: #222222;
  }
  
  /* Título */
  .bloco-the-path-post-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1.4;
    margin: 0;
  }
  
  .bloco-the-path-post-title a {
    color: inherit;
    text-decoration: none;
  }
  
  .bloco-the-path-post-title a:hover {
    text-decoration: underline;
  }
  
  /* Autor + data (linha separada) */
  .bloco-the-path-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #555;
    margin-top: 8px;
  }
  
  .bloco-the-path-meta .meta-inline-author-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  
  /* Nome do autor à esquerda */
  .bloco-the-path-meta .author-inline {
    font-weight: 500;
    color: #333;
    font-size: 0.8rem;
  }
  
  /* Data à direita */
  .bloco-the-path-meta .date-inline {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    margin-left: auto;
  }
  
  /* === Mobile === */
  @media (max-width: 768px) {
    .bloco-the-path-content {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .bloco-the-path-card {
      flex-direction: column;
    }
  
    .bloco-the-path-thumb picture img {
      height: auto;
      min-height: 130px;
    }
  
    .bloco-the-path-post-title {
      font-size: 1.5rem;
    }
  }
  