/*******************************************************************************
 * TÁBLÁZATOK ÉS CSATOLMÁNYOK
 ******************************************************************************/

main table {
  width: 100% !important;
  max-width: 100% !important;
  display: table !important;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
  border: 1px solid #dee2e6;
}

main table th,
main table td {
  display: table-cell !important;
  padding: 0.75rem 0.75rem;
  vertical-align: top;
}

main table td:only-child {
  width: 100% !important;
}

main table th {
  background-color: #f8f9fa;
  color: #212529;
  font-weight: 600;
  text-align: left;
}

main table img {
  max-width: 100% !important;
  height: auto !important;
  width: auto !important;
}

main .field--type-image {
  padding: 0.75rem 0.75rem;
}

main table.kozepre {
  width: unset !important;
  text-align: center !important;
  margin: 0 auto;
  border: none;
}


main table.kozepre td {
  text-align: center;
  border: none;
}

main table.kozepre img.img-fluid  {
  max-width: none !important;
}

/*--- EGYEDI CSATOLMÁNYOK TÁBLÁZAT STÍLUS ---*/

.attachments-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.attachments-table thead th {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-bottom: 2px solid #dee2e6;
}

.attachments-table tbody td {
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid #e9ecef;
  color: #212529;
}

.attachments-table tbody tr:last-child td {
  border-bottom: none;
}

.attachments-table tbody tr:nth-child(even) {
  background-color: #fafbfc;
}

.attachments-table tbody tr {
  transition: background-color 0.2s ease;
}

.attachments-table tbody tr:hover {
  background-color: #f1f3f5;
}

.attachments-table tbody td a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease-in-out;
}

.attachments-table tbody td a:hover {
  color: #0a58ca;
  text-decoration: underline;
}

.attachments-table .file {
  display: inline-flex;
  align-items: center;
}

.attachments-table thead th:last-child,
.attachments-table tbody td:last-child {
  text-align: right;
  width: 120px;
  color: #6c757d;
  font-variant-numeric: tabular-nums;
}


/*******************************************************************************
 * ALOLDAL SPECIFIKUS ELEMEK (HÍREK / NEWS ALOLDAL STÍLUSA)
 ******************************************************************************/

/* Oldal fejléc Banner Cover kép stílusa */
h1.page-hero-header {
  display: flex !important;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
  padding: 3rem 4rem; 
  margin-bottom: 2rem;
  width: 100%;
  text-align: left;
}

h1.page-hero-header.text-white {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6) !important;
}

/* Hírek lista elrendezés és kártyák */
.hirek-lista .view-content {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
  row-gap: 24px;
}

.views-row .views-field-body,
.views-row .field-content {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
}

.hirek-lista .views-row {
  padding-right: 12px;
  padding-left: 12px;
}

.news-list-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-color: #fff;
  border-radius: 10px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.news-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.news-card-img-wrapper {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.news-card-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-list-card:hover .news-card-img-wrapper img {
  transform: scale(1.03);
}

.news-list-card .card-title {
  color: #212529;
  font-weight: 700;
  line-height: 1.4;
}

.news-list-card .btn-outline-primary {
  color: #34aeaf;
  border-color: #34aeaf;
}

.news-list-card .btn-outline-primary:hover {
  background-color: #34aeaf;
  border-color: #34aeaf;
  color: #fff;
}

.news-list-card .card-body {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Lapozott oldalak listásítása (Képek és gombok elrejtése a 2. oldaltól) */
.news-simple-list > .views-row {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  margin-bottom: 0 !important;
}

.news-simple-list .news-card-img-wrapper,
.news-simple-list .news-card-button-wrapper {
  display: none !important;
}

/* Hírek oldali kiemelt hír kártya hover animációja */
.featured-news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  will-change: transform, box-shadow;
}

.featured-card-img-wrapper {
  overflow: hidden !important;
}

.featured-card-img-wrapper img {
  transition: transform 0.5s ease !important;
  will-change: transform;
}

.featured-news-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.featured-news-card:hover .featured-card-img-wrapper img {
  transform: scale(1.05) !important;
}

/*--- AJÁNLÓ MENÜ OLDALSÁV BLOKK ---*/

#block-njszt-theme-menuhirekesblogokoldalsav-2 {
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  padding: 2rem !important;
  border: 1px solid #eef2f5 !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}

#block-njszt-theme-menuhirekesblogokoldalsav-2 h2 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 1.5rem !important;
  position: relative !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 2px solid #ffc107 !important;
  padding-left: 0.2em;
}

#block-njszt-theme-menuhirekesblogokoldalsav-2 ul.nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

#block-njszt-theme-menuhirekesblogokoldalsav-2 .nav-item {
  width: 100% !important;
  margin: 0 !important;
}

#block-njszt-theme-menuhirekesblogokoldalsav-2 .nav-link {
  display: block !important;
  padding: 1rem 1.25rem !important;
  color: #333333 !important;
  background-color: #f8f9fa !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.25s ease-in-out !important;
  border-left: 4px solid transparent !important;
}

#block-njszt-theme-menuhirekesblogokoldalsav-2 .nav-link:hover {
  background-color: #0d6efd !important;
  color: #ffffff !important;
  border-left-color: #ffc107 !important;
  transform: translateX(5px) !important;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.15) !important;
}

/* A legkülső közös szülő doboz híreknél (attachment) */
.view-display-id-attachment_1 {
  margin-bottom: 3.5rem;
  width: 100%;
}

.view-display-id-attachment_1 .view-header,
.view-display-id-attachment_1 .view-content {
  width: 100%;
  margin-bottom: 2rem;
}

/* Csak a hírek oldalon alakítjuk a tartalmi régiót rugalmas konténerré */
.path-news .region-content {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  width: 100% !important;
}

.path-news #block-njszt-theme-page-title {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  order: 1 !important;
  margin-bottom: 2rem !important;
}

/*--- ARCHÍVUM LISTA STÍLUSA ---*/

.hirek-lista-archive .view-content > .views-row {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  margin-bottom: 0 !important;
}

.hirek-lista-archive .news-list-card {
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
  height: auto !important;
  width: 100% !important;
  display: block !important;
}

.hirek-lista-archive .news-list-card .card-body {
  padding: 0 !important;
  display: block !important;
}

.hirek-lista-archive .news-card-img-wrapper,
.hirek-lista-archive .news-card-button-wrapper {
  display: none !important;
}

.hirek-lista-archive .simple-news-row {
  transition: background-color 0.15s ease;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-left: -15px;
  margin-right: -15px;
}

.hirek-lista-archive .simple-news-row:hover {
  background-color: #f8f9fa;
  border-radius: 4px;
}

.hirek-lista-archive .simple-news-row:hover .news-archive-title-link {
  color: #0d6efd !important;
}
