* {
  font-family: "Inter", sans-serif;
}

@font-face {
  font-family: "BrandingPro";
  src: url("/assets/branding-font/branding-pro-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  /* margin: 0;
  padding: 0px; */
  /* height: 120px; */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #12548e;
  padding: 16px 80px;
  display: none;
  justify-content: space-between;
  align-items: center;
}

header img {
  width: 158px;
  height: auto;
  object-fit: contain;
}

.login-link {
  text-decoration: none;
}

.login {
  color: white;
  font-weight: 12px;
  font-style: normal;
  cursor: pointer;
  text-decoration: none;
}

.container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px;
  align-items: flex-start;
}

.news-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-col {
  display: flex;
  flex-direction: column;
}

.news-card {
  display: flex;
  overflow: hidden;
  min-height: 80px;
  text-decoration: none;
  gap: 20px;
  align-items: flex-start;
}

.news-card img {
  width: 120px;
  height: 67.6px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.news-content {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  flex: 1;
}

.news-title {
  font-weight: 16px;
  font-style: normal;
  margin-bottom: 5px;
  color: #54595f;
}

.news-date {
  font-size: 12px;
  color: #adadad;
  font-family: "BrandingPro", sans-serif;
  font-weight: bold;
}

.first-card {
  width: 100%;
}

.big-news-card {
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}

.big-news-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.big-news-card .news-title {
  min-height: 90px;
  padding: 8px 20px;
  font-size: 16px;
  color: #54595f;
  background-color: white;
  display: flex;
  align-items: center;
}

.left-col,
.right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
}

.gemini-container {
  background-color: #f2fcfe;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 80px;
}

.gemini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  text-align: center;
  align-content: center;
  justify-items: center;
  justify-self: center;
  padding: 10px 40px;
  border-radius: 24px;
  border-style: none;
  /* background-color: #12548e;
  color: #ffffff; */
  background-color: #ffffff;
  color: #12548e;
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

strong {
  margin-left: 6px;
  margin-right: 16px;
}

.gemini-button .gemini-icon {
  display: flex;
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  header {
    padding: 16px;
  }
  .container {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .news-column {
    grid-template-columns: 1fr;
  }

  .left-col,
  .right-col {
    flex-direction: column;
  }

  .gemini-button {
    display: block;
  }

  .gemini-button .gemini-icon {
    display: none;
  }
}
