/* style/resources-latest-access-link.css */
.page-resources-latest-access-link {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for readability on dark background */
  background-color: #0A192F; /* Primary dark blue background */
}

.page-resources-latest-access-link .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-access-link .article-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-latest-access-link .hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2e4b 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-resources-latest-access-link .hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%); /* Subtle gold radial gradient */
  animation: rotateBackground 20s linear infinite;
  z-index: 0;
}

@keyframes rotateBackground {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-resources-latest-access-link .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for highlight */
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-resources-latest-access-link .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-access-link .hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-resources-latest-access-link .btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-resources-latest-access-link .btn-primary {
  background-color: #FFD700; /* Auxiliary gold */
  color: #0A192F; /* Primary dark blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-latest-access-link .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-latest-access-link .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-latest-access-link .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-resources-latest-access-link .content-section {
  padding: 60px 0;
  line-height: 1.7;
}

.page-resources-latest-access-link h2.section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-latest-access-link h2.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-latest-access-link h3.subsection-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-latest-access-link p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  color: #c0c0c0;
}

.page-resources-latest-access-link .highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-latest-access-link ol, .page-resources-latest-access-link ul {
  margin-bottom: 1.5em;
  padding-left: 25px;
  color: #c0c0c0;
}

.page-resources-latest-access-link ol li, .page-resources-latest-access-link ul li {
  margin-bottom: 0.8em;
  font-size: 1.05em;
}

.page-resources-latest-access-link ol li strong {
  color: #FFD700;
}

.page-resources-latest-access-link .image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-latest-access-link .article-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-latest-access-link .image-caption {
  font-style: italic;
  font-size: 0.95em;
  color: #a0a0a0;
  margin-top: 15px;
}

.page-resources-latest-access-link .cta-block {
  background-color: #1a2e4b; /* Darker shade of primary */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 50px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-access-link .cta-text {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-latest-access-link .btn-large {
  padding: 16px 35px;
  font-size: 1.2em;
}

.page-resources-latest-access-link .btn-small {
  padding: 10px 25px;
  font-size: 1em;
}

.page-resources-latest-access-link .final-cta {
  margin-top: 80px;
  background: linear-gradient(90deg, #0A192F, #304e74); /* Gradient for final CTA */
}

.page-resources-latest-access-link .related-resources-section {
  background-color: #0A192F;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-resources-latest-access-link .article-card {
  background-color: #1a2e4b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-latest-access-link .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-latest-access-link .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-resources-latest-access-link .card-title {
  font-size: 1.3em;
  color: #FFD700;
  padding: 15px 20px 10px;
  margin-bottom: 0;
}

.page-resources-latest-access-link .card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-latest-access-link .card-title a:hover {
  text-decoration: underline;
}

.page-resources-latest-access-link .card-description {
  font-size: 0.95em;
  color: #b0b0b0;
  padding: 0 20px 15px;
}

.page-resources-latest-access-link .btn-text {
  background: none;
  border: none;
  color: #FFD700;
  padding: 0 20px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  display: inline-block;
}

.page-resources-latest-access-link .btn-text:hover {
  text-decoration: underline;
}

.page-resources-latest-access-link .return-link-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-resources-latest-access-link .btn-text-icon {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1.1em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #FFD700;
  border-radius: 5px;
}

.page-resources-latest-access-link .btn-text-icon:hover {
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-latest-access-link .hero-title {
    font-size: 2.5em;
  }

  .page-resources-latest-access-link .hero-description {
    font-size: 1.1em;
  }

  .page-resources-latest-access-link .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-access-link .btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-latest-access-link h2.section-title {
    font-size: 1.8em;
  }

  .page-resources-latest-access-link h3.subsection-title {
    font-size: 1.4em;
  }

  .page-resources-latest-access-link p, .page-resources-latest-access-link ol li, .page-resources-latest-access-link ul li {
    font-size: 1em;
  }

  .page-resources-latest-access-link .cta-text {
    font-size: 1.2em;
  }

  .page-resources-latest-access-link .related-articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-access-link .hero-title {
    font-size: 2em;
  }

  .page-resources-latest-access-link .hero-description {
    font-size: 1em;
  }

  .page-resources-latest-access-link .btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-latest-access-link h2.section-title {
    font-size: 1.6em;
  }

  .page-resources-latest-access-link h3.subsection-title {
    font-size: 1.2em;
  }
}