/* style/blog-kubet-trusted-platform-features.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --divider-color: #1E3A2A;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --deep-green-color: #0A4B2C;
}

.page-blog-kubet-trusted-platform-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--bg-color); /* Ensure body background is covered */
}

.page-blog-kubet-trusted-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-kubet-trusted-platform-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: var(--deep-green-color);
}

.page-blog-kubet-trusted-platform-features__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-blog-kubet-trusted-platform-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-kubet-trusted-platform-features__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  z-index: 1;
  color: var(--text-main-color);
}

.page-blog-kubet-trusted-platform-features__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Using clamp as required for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
}

.page-blog-kubet-trusted-platform-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-blog-kubet-trusted-platform-features__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-kubet-trusted-platform-features__btn-primary,
.page-blog-kubet-trusted-platform-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-kubet-trusted-platform-features__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main-color);
  border: 2px solid transparent;
}

.page-blog-kubet-trusted-platform-features__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-kubet-trusted-platform-features__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-kubet-trusted-platform-features__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main-color);
  transform: translateY(-2px);
}

/* Intro Section */
.page-blog-kubet-trusted-platform-features__intro-section,
.page-blog-kubet-trusted-platform-features__special-features-section,
.page-blog-kubet-trusted-platform-features__cta-section,
.page-blog-kubet-trusted-platform-features__faq-section,
.page-blog-kubet-trusted-platform-features__conclusion-section {
  padding: 60px 0;
  background-color: var(--bg-color);
  color: var(--text-main-color);
}

.page-blog-kubet-trusted-platform-features__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
}

.page-blog-kubet-trusted-platform-features__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-kubet-trusted-platform-features__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-blog-kubet-trusted-platform-features__text-block a {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-blog-kubet-trusted-platform-features__text-block a:hover {
  color: var(--gold-color);
}

.page-blog-kubet-trusted-platform-features__text-block strong.text-main {
  color: var(--text-main-color);
}

.page-blog-kubet-trusted-platform-features__text-block .highlight {
  color: var(--glow-color);
  font-weight: bold;
}

/* Video Section */
.page-blog-kubet-trusted-platform-features__video-section {
  padding: 40px 0;
  padding-top: 10px; /* Small top padding */
  background-color: var(--deep-green-color);
  text-align: center;
}

.page-blog-kubet-trusted-platform-features__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%; /* Ensure desktop width is 100% with max-width */
  margin: 0 auto;
  background-color: #000;
  border-radius: 10px;
}

.page-blog-kubet-trusted-platform-features__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block; /* Ensure it's a block element */
  cursor: pointer;
}

.page-blog-kubet-trusted-platform-features__video-caption {
  font-size: 1em;
  margin-top: 20px;
  color: var(--text-secondary-color);
}

/* Features Section */
.page-blog-kubet-trusted-platform-features__features-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-blog-kubet-trusted-platform-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-kubet-trusted-platform-features__feature-card {
  background-color: var(--deep-green-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color);
}

.page-blog-kubet-trusted-platform-features__feature-icon {
  width: 100%; /* Occupy card main visual area */
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-kubet-trusted-platform-features__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-kubet-trusted-platform-features__feature-description {
  font-size: 1em;
  color: var(--text-secondary-color);
}

/* Special Features Section */
.page-blog-kubet-trusted-platform-features__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-blog-kubet-trusted-platform-features__image-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-blog-kubet-trusted-platform-features__gallery-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

/* FAQ Section */
.page-blog-kubet-trusted-platform-features__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-kubet-trusted-platform-features__faq-item {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-kubet-trusted-platform-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-color);
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--divider-color);
  list-style: none; /* For details/summary */
}

.page-blog-kubet-trusted-platform-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-kubet-trusted-platform-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold-color);
}

.page-blog-kubet-trusted-platform-features__faq-item[open] .page-blog-kubet-trusted-platform-features__faq-question {
  border-bottom: 1px solid var(--border-color);
}

.page-blog-kubet-trusted-platform-features__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: var(--text-secondary-color);
}

.page-blog-kubet-trusted-platform-features__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-kubet-trusted-platform-features__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-kubet-trusted-platform-features__conclusion-section {
  text-align: center;
  background-color: var(--deep-green-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-kubet-trusted-platform-features__grid-2-col {
    grid-template-columns: 1fr;
  }
  .page-blog-kubet-trusted-platform-features__image-gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-blog-kubet-trusted-platform-features__gallery-image {
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .page-blog-kubet-trusted-platform-features__container {
    padding: 0 15px;
  }

  .page-blog-kubet-trusted-platform-features__hero-title {
    font-size: 2.5em; /* Adjusted for mobile */
  }

  .page-blog-kubet-trusted-platform-features__section-title {
    font-size: 2em;
  }

  .page-blog-kubet-trusted-platform-features__sub-title {
    font-size: 1.5em;
  }

  .page-blog-kubet-trusted-platform-features__text-block {
    font-size: 1em;
  }

  .page-blog-kubet-trusted-platform-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-kubet-trusted-platform-features__btn-primary,
  .page-blog-kubet-trusted-platform-features__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-kubet-trusted-platform-features__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-kubet-trusted-platform-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-kubet-trusted-platform-features__section,
  .page-blog-kubet-trusted-platform-features__card,
  .page-blog-kubet-trusted-platform-features__container,
  .page-blog-kubet-trusted-platform-features__video-section,
  .page-blog-kubet-trusted-platform-features__video-container,
  .page-blog-kubet-trusted-platform-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-kubet-trusted-platform-features__video-section {
    padding-top: 10px !important;
  }

  .page-blog-kubet-trusted-platform-features__image-gallery {
    flex-direction: column;
  }
  .page-blog-kubet-trusted-platform-features__gallery-image {
    max-width: 100%;
  }

  .page-blog-kubet-trusted-platform-features__faq-question {
    font-size: 1.1em;
  }

  .page-blog-kubet-trusted-platform-features__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-blog-kubet-trusted-platform-features__hero-title {
    font-size: 2em;
  }
  .page-blog-kubet-trusted-platform-features__section-title {
    font-size: 1.8em;
  }
}