.tam-tan-article {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 35px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 0 20px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tam-tan-article:hover {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.22),
    inset 0 0 30px rgba(255, 255, 255, 0.75);
}

.tam-tan-section {
  background: #fff;
  border-left: 5px solid #ff5722;
  padding: 24px 28px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tam-tan-section:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.12);
}
.tam-tan-image-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
  
  .tam-tan-section {
    background: #fff;
    border-left: 4px solid #ff5722;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
  }
  
  .tam-tan-section h2 {
    color: #e53935;
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  .tam-tan-section p {
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .tam-tan-section ul {
    padding-left: 20px;
    list-style: square;
    margin-bottom: 12px;
  }
  
  .tam-tan-section li {
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .tam-tan-image-box {
    margin: 25px 0;
    text-align: center;
  }
  
  .tam-tan-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .tam-tan-image-box img:hover {
    transform: scale(1.03);
  }
  
  .image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
  }