/* style/blog-22vip22-security-deep-dive.css */

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

.page-blog-22vip22-security-deep-dive {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Body background is dark, so text is light */
  background-color: var(--background-color);
  line-height: 1.6;
  font-size: 1rem;
}

.page-blog-22vip22-security-deep-dive__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-blog-22vip22-security-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of hero image for better content flow */
  overflow: hidden;
  position: relative;
}

.page-blog-22vip22-security-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog-22vip22-security-deep-dive__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(to top, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0.5) 50%, rgba(8, 22, 15, 0) 100%);
  color: var(--text-main-color);
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-22vip22-security-deep-dive__main-title {
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-main-color);
  margin-bottom: 15px;
  /* clamp for H1 font size */
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-blog-22vip22-security-deep-dive__description {
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-22vip22-security-deep-dive__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-22vip22-security-deep-dive__btn-primary,
.page-blog-22vip22-security-deep-dive__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-22vip22-security-deep-dive__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
}

.page-blog-22vip22-security-deep-dive__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-22vip22-security-deep-dive__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-22vip22-security-deep-dive__btn-secondary:hover {
  background-color: rgba(34, 199, 104, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.2);
}

.page-blog-22vip22-security-deep-dive__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
  box-sizing: border-box;
}

.page-blog-22vip22-security-deep-dive__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-22vip22-security-deep-dive__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-22vip22-security-deep-dive__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-22vip22-security-deep-dive__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

.page-blog-22vip22-security-deep-dive__paragraph strong {
  color: var(--text-main-color);
}

.page-blog-22vip22-security-deep-dive__image-block {
  margin: 40px 0;
  text-align: center;
}

.page-blog-22vip22-security-deep-dive__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-22vip22-security-deep-dive__cta-buttons--bottom {
  margin-top: 50px;
  border-top: 1px solid var(--divider-color);
  padding-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-22vip22-security-deep-dive__hero-content {
    padding: 30px 15px;
  }
  .page-blog-22vip22-security-deep-dive__main-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  .page-blog-22vip22-security-deep-dive__description {
    font-size: 1rem;
  }
  .page-blog-22vip22-security-deep-dive__content-area {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-22vip22-security-deep-dive {
    font-size: 0.95rem;
  }
  .page-blog-22vip22-security-deep-dive__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-22vip22-security-deep-dive__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-22vip22-security-deep-dive__hero-image {
    filter: brightness(0.8); /* Less darkening on mobile if content is below */
  }
  .page-blog-22vip22-security-deep-dive__hero-content {
    position: static;
    background: none;
    padding: 20px 15px;
  }
  .page-blog-22vip22-security-deep-dive__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    margin-top: 20px;
  }
  .page-blog-22vip22-security-deep-dive__description {
    font-size: 0.9rem;
  }
  .page-blog-22vip22-security-deep-dive__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
  }
  .page-blog-22vip22-security-deep-dive__btn-primary,
  .page-blog-22vip22-security-deep-dive__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }
  .page-blog-22vip22-security-deep-dive__content-area {
    padding: 30px 15px;
  }
  .page-blog-22vip22-security-deep-dive__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-22vip22-security-deep-dive__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-top: 30px;
  }
  .page-blog-22vip22-security-deep-dive__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }
  .page-blog-22vip22-security-deep-dive__paragraph {
    font-size: 0.9rem;
  }
  .page-blog-22vip22-security-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-22vip22-security-deep-dive__image-block,
  .page-blog-22vip22-security-deep-dive__container,
  .page-blog-22vip22-security-deep-dive__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}