/* Alap stílusok - minden felirat egységes */
.eredmenyek_felirat,
.hirek_felirat,
.kovetkezo_meccseing_felirat,
.rolunk_felirat {
  color: var(--text-cim);
  margin: 0 25px;
  font-size: 40px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hirek_felirat{
  padding-bottom: 20px;
}

.eredmenyek_alatt_hr,
.kovetkezo_meccs_alatt_hr,
.rolunk_alatt_hr {
  margin: 0 25px 15px 25px;
  background: var(--text-cim);
  height: 1.3px;
  border: none;
}

/* Hírek rész */
.egesz-hirek {
  max-width: 1400px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.hirek_felirat {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 25px;
}




.text-content {
  padding: 15px;
}



/* Eredmények és következő meccsek */
.tartalom_kontener {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto 40px auto;
}

.eredmenyek_div,
.kovetkezo_meccsek_div {
  flex: 1 1 500px;
  min-width: 0;
}

/* Eredmény sávok stílusa */
.eredmenyek_csik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--text-lighter);
  margin: 10px 25px;
  border-radius: 3px;
  padding: 12px 15px;
  min-height: 60px;
  transition: transform 0.2s ease;
}

.eredmenyek_csik:hover {
  transform: scale(1.01);
}

.eredmenyek_bal {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  gap: 15px;
}

.eredmenyek_korosztaly {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-primary);
  min-width: 50px;
  flex-shrink: 0;
}

.eredmenyek_meccs {
  font-size: 20px;
  color: var(--primary-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  padding: 0 10px;
}

.eredmenyek_eredmeny {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.meccs_idopont {
  font-size: 14px;
  color: var(--text-secondary);
  min-width: 90px;
  text-align: right;
  flex-shrink: 0;
  margin-left: 15px;
}


/* Reszponzív módosítások */
@media (max-width: 768px) {
  .tartalom_kontener,
  .rolunk_container {
    padding: 0 15px;
  }
  
  .eredmenyek_csik {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    margin: 8px 15px;
    min-height: auto;
  }
  
  .eredmenyek_bal {
    width: 100%;
    margin-bottom: 5px;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .eredmenyek_korosztaly {
    font-size: 16px;
    min-width: 40px;
  }
  
  .eredmenyek_meccs {
    font-size: 16px;
    padding: 0;
    flex: 1 1 60%;
  }
  
  .eredmenyek_eredmeny {
    font-size: 18px;
    min-width: 40px;
    order: 1;
  }
  
  .meccs_idopont {
    width: 100%;
    text-align: left;
    margin: 5px 0 0 0;
    font-size: 13px;
    order: 2;
  }
  
  
}

@media (max-width: 480px) {
  .eredmenyek_felirat,
  .hirek_felirat,
  .kovetkezo_meccseing_felirat,
  .rolunk_felirat {
    font-size: 28px;
    margin: 0 15px;
  }
  
  .hirek_alatt_hr,
  .eredmenyek_alatt_hr,
  .kovetkezo_meccs_alatt_hr,
  .rolunk_alatt_hr {
    margin: 0 15px 10px 15px;
  }
 
}