
:root {
  --font-sans: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-heading: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-special: "Darker Grotesque", ui-sans-serif, system-ui, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  @apply font-sans;
}

.max-w-6xl {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
} 

.wrapper-main{
  padding:10px;
  font-family: var(--font-sans);
}


.press-list-item{
  font-size:14px;
  color:gray;
  cursor: pointer;
  padding:3px 15px;
}

#popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

#popup-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  width: 800px;
  max-width: 95vw;
  max-height: 80vh;
  /* overflow-y: auto; */
  overflow: hidden;
  z-index: 120;
  border-radius: 8px;
}

#popup-content {
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
}

#popup-overlay.active,
#popup-window.active {
  display: block;
}

#popup-close {
  position: absolute;
  top: -6px;
  right: 0px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}


.popup-item {
  padding: 20px;
}

.popup-date {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.popup-title {
  font-size: 22px;
  margin: 0 0 16px 0;
  font-family: var(--font-special);
}


.popup-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.pr-title{
  padding-bottom: 5px;
  border-bottom: 1px gray solid;
}
.breaker{
  margin:15px;
}

.link-in-article{
  color:gray !important;
  font-style:normal;
}

.link-in-article:hover{
  color:black !important;
}

.date-list-press{
  color:rgb(14, 112, 168) !important;
}

.calendar-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  max-width: 560px;
}

.calendar-title {
  background-color: #333;
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.calendar-body {
  padding: 8px 0;
}

.calendar-row {
  display: flex;
  padding: 8px 16px;
  border-bottom: 1px solid #eee;
}

.calendar-row:last-child {
  border-bottom: none;
}

.calendar-label {
  font-weight: bold;
  min-width: 90px;
  color: #555;
}

.calendar-value {
  color: #333;
}

.tab-bar { 
  display: flex; 
  gap: 0; 
  border-bottom: 1px solid #ddd; 
  margin-bottom: 1.5rem; 
  padding-bottom:0.5rem; 
}
.tab-btn { 
  padding: 10px 20px; 
  font-size: 14px; 
  font-weight: 500; 
  background: none; 
  border: none; 
  border-bottom: 2px solid transparent; 
  color: #888; cursor: pointer; 
  margin-bottom: 5px; 
  transition: color 0.15s, border-color 0.15s; 
}
.tab-btn:hover { 
  color: #333; 
}
.tab-btn.active { 
  color: #111; 
  border-bottom-color: #111; 
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.press-list-item { 
  color: black; 
  padding: 8px 0; 
  font-size: 14px; 
  font-family: var(--font-heading); 
  border-bottom: 1px solid #eee; 
  cursor: pointer; 
  line-height: 1.5; 
}
.press-list-item:hover{
  color:gray;
}
.press-list-item:last-child { border: none; }
.date-list-press { color: #888; font-size: 13px; }


.logo-item {
  display: flex;
  flex-direction: column;
}

.news_wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  overflow: hidden; /* prevents tall images from breaking out */
  box-sizing: border-box;
  background: white;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.news_title{
  color:rgb(156, 155, 155);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-align: center;
  width: 100%;
  cursor: pointer;
  margin-top:3px;
  font-size: 0.68rem;
}

.news_date{
  font-size: 0.8rem;
  text-align: center;
  margin-top: 5px;
  color:rgb(14, 112, 168) !important;
}

#newsTab {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 1rem 0;
}

#pressTab {
  width: 100%;
}

@media (max-width: 991.98px) {
  #newsTab {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  #newsTab {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .news_wrap {
    height: 90px;
    min-height: 90px;
    max-height: 90px;
    padding: 8px 6px;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .press-list-item {
    font-size: 13px;
    padding: 10px 0;
  }

  #popup-window {
    width: 95vw;
    padding: 20px 15px;
  }
}

