/* Best Bites Section Styles */
.best-bites-section {
  background-color: #f5f8ff;
  padding: 4rem 0;
  border-top: 1px solid rgba(13, 27, 62, 0.1);
  border-bottom: 1px solid rgba(13, 27, 62, 0.1);
}

.best-bites-container {
  max-width: 800px;
  margin: 0 auto;
}

.twitter-bites {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.twitter-bite {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  border-left: 4px solid #1DA1F2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.twitter-bite:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.twitter-bite p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.twitter-bite .character-count {
  font-size: 0.8rem;
  color: #657786;
  text-align: right;
  margin-top: 0.5rem;
}

.twitter-bite .engagement {
  font-size: 0.8rem;
  color: #657786;
  text-align: right;
  margin-top: 0.5rem;
  font-weight: 500;
}

.recommended-tag {
  display: inline-block;
  background-color: #1DA1F2;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-tag {
  display: inline-block;
  background-color: #1a237e;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  position: absolute;
  top: -10px;
  right: 15px;
}

.twitter-icon {
  color: #1DA1F2;
  margin-right: 0.5rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.section-intro p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: #555;
}

.real-tweet {
  border-left: 4px solid #ff5a3d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .twitter-bite {
    padding: 1.2rem;
  }
  
  .twitter-bite p {
    font-size: 1rem;
  }
}
