@charset "UTF-8";
@media screen and (max-width: 768px) {
  :root {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a,
.button {
  line-height: 1.2;
}

.button {
  font-weight: 500;
}

body {
  font-family: "Rubik Variable", "Rubik", sans-serif;
  line-height: 1.5;
  color: #030517;
  font-size: 1rem;
  background-color: #fafcff;
}

.news-hero {
  background-image: linear-gradient(to bottom, rgba(5, 2, 20, 0.15) 0%, rgba(19, 15, 48, 0.15) 100%), url("/imgs/hero-bg-home.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 95% 0;
  padding: 8px 16px;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
}

.news-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.news-hero-heading {
  font-weight: 600;
  color: #fafcff;
  margin-bottom: 12px;
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.1);
}

.news-hero-subtitle {
  color: #fafcff;
  font-size: 1.125rem;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.news-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.news-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.news-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 32px;
  margin-bottom: 64px;
}

.news-empty-message {
  text-align: center;
  color: #73747d;
  font-size: 1.5rem;
  font-style: italic;
}

.news-post-tile {
  background: #fafcff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ceced0;
  cursor: pointer;
}
.news-post-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #2378f4;
}

.news-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.news-post-category {
  background-color: #2378f4;
  color: #fafcff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

.news-post-date {
  color: #73747d;
  font-size: 0.875rem;
}

.news-post-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #030517;
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-post-excerpt {
  color: #3b3d4a;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-post-read-time {
  color: #73747d;
  font-size: 0.875rem;
}

.news-post-author {
  color: #73747d;
  font-size: 0.875rem;
}

.news-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.news-post-link:hover {
  transform: translateY(-2px);
}

.news-post {
  min-height: 100vh;
  background: #f6f9fe;
  color: #030517;
}
.news-post .news-post-hero {
  padding: 120px 20px 80px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 95% 0;
  position: relative;
  overflow: hidden;
}
.news-post .news-post-hero .news-post-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.news-post .news-post-hero .news-post-hero-content .news-post-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fafcff;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .news-post .news-post-hero .news-post-hero-content .news-post-title {
    font-size: 2.5rem;
  }
}
.news-post .news-post-content {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.news-post .news-post-content .news-post-top-actions {
  text-align: center;
  margin-bottom: 30px;
}
.news-post .news-post-content .news-post-meta-info {
  margin-bottom: 40px;
  text-align: center;
}
.news-post .news-post-content .news-post-meta-info .news-post-author-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.news-post .news-post-content .news-post-meta-info .news-post-author-info .news-post-category {
  background: #2378f4;
  color: #fafcff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-post .news-post-content .news-post-meta-info .news-post-author-info .news-post-author {
  color: #3b3d4a;
  font-weight: 600;
  font-size: 16px;
}
.news-post .news-post-content .news-post-meta-info .news-post-author-info .news-post-date {
  color: #3b3d4a;
  font-size: 16px;
  font-weight: 500;
}
.news-post .news-post-content .news-post-meta-info .news-post-author-info .news-post-read-time {
  color: #3b3d4a;
  font-size: 16px;
  opacity: 0.7;
}
.news-post .news-post-content .news-post-body {
  background: #fafcff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #ceced0;
}
.news-post .news-post-content .news-post-body h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #030517;
  border-bottom: 2px solid #2378f4;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .news-post .news-post-content .news-post-body h1 {
    font-size: 2rem;
  }
}
.news-post .news-post-content .news-post-body h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #030517;
}
@media (max-width: 768px) {
  .news-post .news-post-content .news-post-body h2 {
    font-size: 1.5rem;
  }
}
.news-post .news-post-content .news-post-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 25px 0 10px;
  color: #030517;
}
@media (max-width: 768px) {
  .news-post .news-post-content .news-post-body h3 {
    font-size: 1.25rem;
  }
}
.news-post .news-post-content .news-post-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #3b3d4a;
}
@media (max-width: 768px) {
  .news-post .news-post-content .news-post-body p {
    font-size: 1rem;
  }
}
.news-post .news-post-content .news-post-body li {
  list-style: none;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #3b3d4a;
  padding-left: 20px;
  position: relative;
}
.news-post .news-post-content .news-post-body li::before {
  content: "•";
  color: #2378f4;
  font-weight: bold;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .news-post .news-post-content .news-post-body li {
    font-size: 1rem;
  }
}
.news-post .news-post-content .news-post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #ceced0;
  padding-top: 30px;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #030517;
  max-width: 48%;
  padding: 16px;
  border-radius: 12px;
  transition: background-color 0.2s ease;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link:hover {
  background-color: #d9d9da;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link .arrow {
  font-size: 2rem;
  color: #2378f4;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link .text {
  display: flex;
  flex-direction: column;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link .label {
  font-size: 0.9rem;
  color: #73747d;
  margin-bottom: 4px;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link .title {
  font-weight: 600;
  color: #2378f4;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link.next {
  text-align: right;
}
.news-post .news-post-content .news-post-navigation .news-post-nav-link.next .text {
  align-items: flex-end;
}

@media screen and (max-width: 1025px) {
  .news-hero {
    padding-left: 80px;
    background-position: 90% 0;
  }
  .news-hero-heading {
    font-size: 2.5rem;
  }
  .news-posts {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
}
@media screen and (max-width: 769px) {
  .news-hero {
    padding-left: 16px;
    align-items: center;
    text-align: center;
    background-position: 95% 0;
    height: 40vh;
  }
  .news-hero-heading {
    font-size: 2rem;
  }
  .news-content {
    padding: 0 16px;
  }
  .news-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-post-tile {
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .news-hero-heading {
    font-size: 1.75rem;
  }
  .news-post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .news-post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}