/* ========================================
   POST TEMPLATE - BIOLAB STUDIO
   ======================================== */

   .post_pro.orto {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #595959;
  }

  .post_pro.orto .tarja{
    display: none;
  }
  
  /* ========================================
     BANNER HERO DO POST
     ======================================== */
  .post_pro.orto .banner_comum {
    width: 100%;
    border-radius: 0;
    position: relative;
    overflow: hidden;
  }

  /* ========================================
     TITULO DO POST
     ======================================== */
  .post_pro.orto .container.blog_lista{
    margin: 1.8em;
    overflow: hidden;
  }

  .post_pro .detalhes h1{
    color: #595959;
    font-weight: 900;
  }

  .post_pro .detalhes .data{
    color: #595959;
  }

  /* ========================================
     CABEÇALHO DO POST
     ======================================== */
  .post-header {
    background-color: #fff;
  }
  
  .post-title {
    font-size: 22px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    line-height: 120%;
  }
  
  .post-date {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin: 0 0 25px 0;
  }
  
  /* ========================================
     CARDS DE AUTORES
     ======================================== */
  .authors-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .author-card {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .author-card p{
    font-size: 12px;
  }

  .blog_lista .author-card-content p {
    margin-top: 0;
  }
  
  .author-card-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #00a0d2;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .author-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-card-content {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
    font-size: 12px;
  }
  
  .author-card-label {
    font-size: 11px;
    font-weight: 700;
    color: #00558b;
    margin: 0 0 5px 0;
  }
  
  .author-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #00558b;
    margin: 0 0 8px 0;
  }
  
  .author-card-bio {
    font-size: 11px;
    font-weight: 400;
    color: #555;
    line-height: 140%;
    margin: 0;
    text-align: left;
  }
  
  /* ========================================
     CONTEÚDO DO POST
     ======================================== */
  .post-content {
    padding: 0;
  }

  .post-content .title-content{
    color: #008CC2;
    font-size: 14px;
    font-weight: 900;
  }
  
  .post-content p {
    font-size: 12px !important;
    font-weight: 400;
    color: #555;
    line-height: 160%;
    text-align: justify;
    margin: 0 0 16px 0;
  }
  
  .post-content h2 {
    font-size: 14px;
    font-weight: 700;
    color: #595959;
    text-transform: uppercase;
    margin: 30px 0 15px 0;
    line-height: 130%;
  }
  
  .post-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #008CC2;
    text-transform: uppercase;
    margin: 25px 0 12px 0;
    line-height: 130%;
  }

  .content-background{
    background-color: #F1EDED;
    padding: 14px;
  }
  
  .post-content ul {
    margin: 15px 0;
    padding-left: 20px;
  }
  
  .post-content ul li {
    font-size: 12px;
    font-weight: 400;
    color: #555;
    line-height: 120%;
    text-align: left;
  }
  
  /* Caixa de destaque com fundo cinza */
  .highlight-box {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
  }
  
  .highlight-box h2 {
    font-size: 14px;
    font-weight: 700;
    color: #595959;
    margin: 0 0 12px 0;
    text-transform: none;
  }

  .highlight-box h4 {
    font-size: 13px;
    font-weight: 700;
    color: #005282;
    margin: 0 0 12px 0;
    text-transform: none;
    margin-top: 10px;
  }
  
  .highlight-box ul {
    margin: 0;
    padding-left: 20px;
  }
  
  .highlight-box ul li {
    font-size: 12px;
    line-height: 120%;
  }
  
  /* Caixa azul de destaque */
  .info-box {
    background-color: #00558b;
    padding: 20px;
    margin: 25px 0;
  }
  
  .info-box p {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 150%;
    text-align: left;
    margin: 0;
    margin-top: 0 !important;
  }
  
  /* Citação em itálico */
  .quote-text {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #666;
    line-height: 150%;
    text-align: left;
    margin: 20px 0;
    padding-left: 15px;
    border-left: 3px solid #00a0d2;
  }
  
  /* ========================================
     VÍDEO EMBED
     ======================================== */
  .video-container {
    position: relative;
    width: 100%;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }
  
  .video-container iframe,
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Placeholder de vídeo */
  .video-placeholder {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    position: relative;
  }
  
  /* ========================================
     REFERÊNCIAS
     ======================================== */
  .references-section h2 {
    font-size: 16px;
    font-weight: 700;
    color: #00558b;
    text-transform: uppercase;
    margin: 0 0 20px 0;
  }
  
  .references-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: reference-counter;
  }
  
  .references-list li {
    font-size: 11px;
    font-weight: 400;
    color: #555;
    line-height: 150%;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    text-align: left;
    counter-increment: reference-counter;
  }
  
  .references-list li::before {
    content: counter(reference-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #00558b;
  }
  
  .references-list li em {
    font-style: italic;
  }
  
  /* ========================================
     DIVISOR
     ======================================== */
  .post-divider {
    width: 100%;
    max-width: 250px;
    height: 2px;
    background-color: #005282;
    margin: 40px auto;
  }
  
  /* ========================================
     BOTÃO VEJA MAIS
     ======================================== */
  .btn-section {
    text-align: center;
    padding: 30px 20px;
  }
  
  .btn-veja-mais {
    display: inline-block;
    background-color: #00558b;
    color: #fff !important;
    text-decoration: none !important;
    padding: 8px 40px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }
  
  .btn-veja-mais:hover {
    background-color: #003d63;
  }
  
  /* ========================================
     POSTS RELACIONADOS
     ======================================== */
  .related-posts {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  
  .related-posts-grid {
    display: flex;
    gap: 20px;
  }
  
  .related-post-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  
  .related-post-image {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    background-color: #e8e8e8;
  }
  
  .related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .related-post-content {
    padding: 5px;
  }
  
  .related-post-title {
    font-size: 12px;
    font-weight: 700;
    color: #595959;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    line-height: 130%;
  }
  
  .related-post-date {
    font-size: 8px !important;
    font-weight: 400;
    color: #999;
    margin: 0 0 10px 0;
  }
  
  .related-post-excerpt {
    font-size: 10px !important;
    font-weight: 400;
    color: #595959;
    line-height: 120% !important;
    margin: 0 0 15px 0;
    text-align: left;
  }
  
  a.btn-saiba-mais-related {
    display: inline-flex;
    align-items: center;
    background-color: #008CC2;
    color: #fff !important;
    text-decoration: none !important;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }
  
  .btn-saiba-mais-related:hover {
    background-color: #0088b8;
  }
  
  /* ========================================
     RESPONSIVIDADE - TABLET E DESKTOP
     ======================================== */
  @media (min-width: 768px) {
    .post-hero-authors {
      flex-direction: row;
      gap: 30px;
    }
  
    .author-photo {
      width: 80px;
      height: 80px;
    }
  
    .post-title {
      font-size: 28px;
    }
  
    .authors-cards {
      gap: 25px;
    }
  
    .author-card {
      flex: 1;
    }
  
    .post-content p {
      font-size: 15px;
    }
  
    .post-content h2 {
      font-size: 22px;
    }
  
    .post-content h3 {
      font-size: 18px;
    }
  
    .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
  }
  
  @media (min-width: 1024px) {
    .post_pro.orto .container.blog_lista {
        margin: 3.8em;
        overflow: hidden;
    }
    
    .post_pro.orto {
      max-width: 1200px;
    }
  
    .related-posts {
      padding: 60px 80px;
    }
  }

  @media (max-width: 850px) {
    .author-card p{
      font-size: 12px !important;
    }

    .post_pro .detalhes h1 {
      font-size: 16px;
    }

    .post_pro.orto .banner_comum {
      margin: 0 auto;
    }
  }