/* style/resources-11uu-latest-news.css */
.page-resources-11uu-latest-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-resources-11uu-latest-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-11uu-latest-news__hero {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-11uu-latest-news__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-resources-11uu-latest-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-resources-11uu-latest-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-11uu-latest-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-resources-11uu-latest-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-resources-11uu-latest-news__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.page-resources-11uu-latest-news__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-11uu-latest-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-resources-11uu-latest-news__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-11uu-latest-news__article-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-11uu-latest-news__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-resources-11uu-latest-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-resources-11uu-latest-news__article-card h3 {
  padding: 15px 20px 0;
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007BFF;
}

.page-resources-11uu-latest-news__article-card h3 a {
  text-decoration: none;
  color: #007BFF;
  transition: color 0.3s ease;
}

.page-resources-11uu-latest-news__article-card h3 a:hover {
  color: #FFC107;
}

.page-resources-11uu-latest-news__article-meta {
  font-size: 0.9em;
  color: #777;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-resources-11uu-latest-news__article-excerpt {
  font-size: 1em;
  color: #555;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-resources-11uu-latest-news__read-more {
  display: inline-block;
  background-color: #FFC107;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-resources-11uu-latest-news__read-more:hover {
  background-color: #e0a800;
  color: #fff;
}

.page-resources-11uu-latest-news__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-resources-11uu-latest-news__button--primary {
  background-color: #FFC107;
  color: #333;
  border: 2px solid #FFC107;
}

.page-resources-11uu-latest-news__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
}

.page-resources-11uu-latest-news__button--secondary {
  background-color: #007BFF;
  color: #fff;
  border: 2px solid #007BFF;
  margin-left: 15px;
}

.page-resources-11uu-latest-news__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

.page-resources-11uu-latest-news__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 15px;
  background-color: #007BFF;
  color: #fff;
  border: 1px solid #007BFF;
}

.page-resources-11uu-latest-news__button--small:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-resources-11uu-latest-news__cta-block {
  text-align: center;
  background-color: #f0f8ff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 50px;
  border: 1px dashed #007BFF;
}

.page-resources-11uu-latest-news__cta-block p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #007BFF;
  font-weight: 500;
}

.page-resources-11uu-latest-news__why-choose-us .page-resources-11uu-latest-news__section-title {
  color: #007BFF;
}

.page-resources-11uu-latest-news__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-11uu-latest-news__features-list li {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-11uu-latest-news__features-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-resources-11uu-latest-news__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-11uu-latest-news__features-list h3 {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-resources-11uu-latest-news__features-list p {
  color: #666;
  font-size: 1em;
}

.page-resources-11uu-latest-news__join-us .page-resources-11uu-latest-news__section-title {
  color: #007BFF;
}

.page-resources-11uu-latest-news__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-11uu-latest-news__step-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-11uu-latest-news__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-11uu-latest-news__step-card h3 {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-resources-11uu-latest-news__step-card p {
  color: #666;
  font-size: 1em;
  flex-grow: 1;
}

.page-resources-11uu-latest-news__final-cta {
  font-size: 1.4em;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #333;
  font-weight: 500;
}

.page-resources-11uu-latest-news__return-link-wrapper {
  text-align: center;
  padding: 30px 0;
  background-color: #f8f9fa;
}

.page-resources-11uu-latest-news__return-link {
  color: #007BFF;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-11uu-latest-news__return-link:hover {
  color: #FFC107;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .page-resources-11uu-latest-news__hero-title {
    font-size: 2.8em;
  }
  .page-resources-11uu-latest-news__section-title {
    font-size: 2em;
  }
  .page-resources-11uu-latest-news__article-grid,
  .page-resources-11uu-latest-news__features-list,
  .page-resources-11uu-latest-news__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-11uu-latest-news__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .page-resources-11uu-latest-news__hero {
    padding: 60px 0;
  }
  .page-resources-11uu-latest-news__hero-title {
    font-size: 2em;
  }
  .page-resources-11uu-latest-news__hero-description,
  .page-resources-11uu-latest-news__section-intro {
    font-size: 1em;
  }
  .page-resources-11uu-latest-news__section {
    padding: 40px 0;
  }
  .page-resources-11uu-latest-news__section-title {
    font-size: 1.8em;
  }
  .page-resources-11uu-latest-news__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-11uu-latest-news__cta-block p {
    font-size: 1.1em;
  }
  .page-resources-11uu-latest-news__features-list li,
  .page-resources-11uu-latest-news__step-card {
    padding: 20px;
  }
  .page-resources-11uu-latest-news__features-list h3,
  .page-resources-11uu-latest-news__step-card h3 {
    font-size: 1.2em;
  }
  .page-resources-11uu-latest-news__article-card h3 {
    font-size: 1.3em;
  }
}