/* Blog feed container */
.blog-feed {
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 40px auto 0;
}

/* Category/Tag style */
.blog-category {
  font-family: "BebasNeue", sans-serif;
  font-size: 20px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1px;
  display: inline-block;
  letter-spacing: 5px;
}

/* Responsive video container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  margin: 15px 0;
  overflow: hidden;
  border-radius: 5px;
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Post card styles */
.post-card {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  margin-bottom: 30px;
  border-left: 5px solid var(--orange);

  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );

  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.post-card h2 {
  font-family: "Nulshock", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  /* Neon glow */
  /*text-shadow: 0 0 5px var(--purple), 0 0 10px var(--dark-bg);*/
}

.post-card p {
  margin-bottom: 1em;
  text-align: justify;
}

.post-card p,
.post-card ul {
  margin-bottom: 1.2rem;
}


.post-card img {
  width: 100%;
  height: auto; /* or any fixed height you prefer */
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 15px auto;
  border-radius: 5px;
}

.post-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.post-date {
  font-size: 0.85em;
  color: var(--white);
  background: rgba(255, 165, 0, 0.1);
  padding: 4px 8px;
  border-left: 2px solid var(--orange);
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
}

.post-card ul {
  padding-left: 1.5rem;
}

.post-card li {
  padding-left: 0.25rem;
}


.post-card a{
  color: white;
  border-bottom: 1px solid var(--orange);
  text-decoration: none;
}


.post-card a:hover {
  text-shadow: 0 0 10px var(--purple), 0 0 20px var(--purple);
  transition: 0.2s;
}

/* Staggered fade-in for each post */
.post-card:nth-child(1) {
  animation-delay: 0.2s;
}
.post-card:nth-child(2) {
  animation-delay: 0.4s;
}
.post-card:nth-child(3) {
  animation-delay: 0.6s;
}
/* Hover effects */
/*.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--purple);
}
.post-card:hover h2 {
  text-shadow: 0 0 10px var(--yellow), 0 0 20px var(--yellow);
}*/
