.container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .eventcard {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
  }
  
  
.eventcard {
opacity: 0;
transform: translateX(0px) scale(0.9);
filter: blur(8px);
transition: opacity 0.5s ease-out, transform 0.5s ease-out, filter 0.5s ease-out;
will-change: opacity, transform, filter;
}

.eventcard.animated {
opacity: 1;
transform: translateX(0) scale(1);
filter: blur(0px);
}
  
  
  .eventcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  .eventcard-body {
    padding: 1.5rem;
    flex-grow: 1;
  }
  .eventcard-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  .eventcard-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #555;
  }
  .eventcard-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
  }
  .eventcard-footer {
    padding: 1rem 1.5rem;
    background-color: #f0f3f8;
    text-align: right;
  }
  .btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
  }
  .btn-primary {
    background-color: #00488d;
    color: #fff;
  }
  .btn-primary:hover {
    background-color: #3a78d2;
  }
  
  
  .link {
      color: #00488d;
      text-decoration: none;
  }
  
  
  
  .article_description ul {
      margin: 0;
      
display: flex;
flex-direction: column; /* Függőleges lista */
gap: 0px;              /* 10px hézag a li elemek között */

      
      
  }
  
  
  
  .first_info ul {

  }
  
  
  .first_info ul li {
display: flex;
flex-direction: column;
  }
  
  
  .first_info h2 {
      margin-bottom: 5px;
  }
  
  
  .first_info p, .first_info h3 {
      margin: 0;
  }
  
  
  .add_info {
      display:flex;
      flex-direction: column;
      justify-content:center;
      align-items:center;
      width:300px;
      height:200px;
          background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 20px;
  }
  
  .add_info p {
      margin: 0;
      padding: 0;
  }
  
  
  .first_info {
      width: 700px;
  }
  
  
  .first_info h2 {
      text-align: justify !important;
  }
  
  
  .tribe_button {
          background-color: #232323;
          
  border-radius: 3px;
  border: 0;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: normal;
  padding: 6px 9px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  zoom: 1;
          
          
          
  }
