/* Események lista konténer */
.events-list-container {
    display: flex;
     font-family: "Open Sans", Sans-serif;
    flex-direction: column;
}




/* Fejléc (dátum és cím) */
.events-list-header {
    margin-bottom: 25px;
}

.events-list-date {
    margin: 0;
    display: inline-block;
    color: #4D6472;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-bottom: 1px solid #4D6472;
    width: 173px;
}

.events-list-title {
color: #47342D;
margin: 19px 0px;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.events-list-image {
    width: 41%;
}

.events-list-content-wrapper {
    display: flex;
    gap: 24px;
    align-items: start;
}

.events-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.events-list-item {
    border-bottom: 1px solid #4D6472;
    padding-bottom: 60px;
    margin-bottom: 60px;
}


.events-list-image img {
 width: 485px;
    display: block;
    object-fit: cover;
  height: 318px !important;
}

/* Szöveg rész */
.events-list-text {
    display: flex;
        width: 57%;
    flex-direction: column;
    gap: 20px;
}

.events-list-link-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 50px;
}

.events-list-excerpt {
    font-size: 16px;
    color: #47342D;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.events-list-link {
  display: flex;
  width: 180px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 2px solid #736A65;
  color: #736A65;
  background-color: transparent;
    text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* FOCUS állapot (2. gomb) */
.events-list-link:focus,
.events-list-link:active {
  background-color: #F3EEEB; 
  color: #4E3C33; 
  outline: none;
}

/* HOVER állapot (3. gomb) */
.events-list-link:hover {
background: #47342D;
  color: #FFFFFF;
  border-color: #4E3C33;
}



/* Reszponzív dizájn */
@media (max-width: 1024px) {
    .events-list-content-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 25px;
    }
    
    .events-list-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .events-list-container {
        gap: 0px;
    }
    
 .events-list-item {
    border-bottom: 1px solid #4D6472;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
    
    .events-list-content-wrapper {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .events-list-image {
    width: 100%;
}

.events-list-text {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0px;
}

.events-list-link {
    display: flex;
    width: 180px;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 2px solid #736A65;
    color: #736A65;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 15px;

}

.events-list-link-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 35px;
}
    
    .events-list-title {
        font-size: 22px;
    }
    
    .events-list-excerpt {
        font-size: 15px;
    }
}

