/* style/blog-how-to-access-k8-securely.css */

/* Custom Colors */
:root {
  --k8-primary: #11A84E;
  --k8-secondary: #22C768;
  --k8-card-bg: #11271B;
  --k8-background: #08160F;
  --k8-text-main: #F2FFF6;
  --k8-text-secondary: #A7D9B8;
  --k8-border: #2E7A4E;
  --k8-glow: #57E38D;
  --k8-gold: #F2C14E;
  --k8-divider: #1E3A2A;
  --k8-deep-green: #0A4B2C;
  --k8-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-how-to-access-k8-securely {
  color: var(--k8-text-main); /* Default text color for the page */
  background-color: var(--k8-background); /* Specific background for main content area if needed, otherwise inherit from body */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-access-k8-securely__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: var(--k8-deep-green);
  overflow: hidden;
}

.page-blog-how-to-access-k8-securely__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-how-to-access-k8-securely__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-how-to-access-k8-securely__hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--k8-text-main);
  z-index: 1;
}

.page-blog-how-to-access-k8-securely__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--k8-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-how-to-access-k8-securely__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--k8-text-secondary);
}

.page-blog-how-to-access-k8-securely__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-blog-how-to-access-k8-securely__btn-primary,
.page-blog-how-to-access-k8-securely__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-access-k8-securely__btn-primary {
  background: var(--k8-button-gradient);
  color: var(--k8-text-main);
  border: 2px solid var(--k8-glow);
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-how-to-access-k8-securely__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-how-to-access-k8-securely__btn-secondary {
  background-color: transparent;
  color: var(--k8-glow);
  border: 2px solid var(--k8-glow);
}

.page-blog-how-to-access-k8-securely__btn-secondary:hover {
  background-color: var(--k8-glow);
  color: var(--k8-background);
  transform: translateY(-3px);
}

.page-blog-how-to-access-k8-securely__content-section {
  padding: 80px 20px;
  background-color: var(--k8-background);
  color: var(--k8-text-main);
}

.page-blog-how-to-access-k8-securely__dark-bg {
  background-color: var(--k8-card-bg);
  color: var(--k8-text-main);
}

.page-blog-how-to-access-k8-securely__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-how-to-access-k8-securely__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--k8-gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-access-k8-securely__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--k8-glow);
  border-radius: 2px;
}

.page-blog-how-to-access-k8-securely__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--k8-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-how-to-access-k8-securely__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--k8-text-secondary);
}

.page-blog-how-to-access-k8-securely__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-access-k8-securely__list-item {
  font-size: 1.05rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--k8-text-secondary);
}

.page-blog-how-to-access-k8-securely__list-item::before {
  content: '✓';
  color: var(--k8-glow);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-blog-how-to-access-k8-securely__image-in-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-how-to-access-k8-securely__grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-access-k8-securely__card {
  background-color: var(--k8-card-bg);
  border: 1px solid var(--k8-border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--k8-text-main);
}

.page-blog-how-to-access-k8-securely__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}