/* style/blog-12win-nha-cai-deep-dive.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --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;
}

.page-blog-12win-nha-cai-deep-dive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark background */
  background-color: var(--background-color); /* Default background color */
}

.page-blog-12win-nha-cai-deep-dive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  min-height: 600px;
  overflow: hidden;
  color: var(--text-main-color);
  background-color: var(--background-color);
}

.page-blog-12win-nha-cai-deep-dive__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-12win-nha-cai-deep-dive__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-12win-nha-cai-deep-dive__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-12win-nha-cai-deep-dive__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
}

.page-blog-12win-nha-cai-deep-dive__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-blog-12win-nha-cai-deep-dive__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-12win-nha-cai-deep-dive__btn-primary,
.page-blog-12win-nha-cai-deep-dive__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-blog-12win-nha-cai-deep-dive__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-12win-nha-cai-deep-dive__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-12win-nha-cai-deep-dive__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-12win-nha-cai-deep-dive__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-12win-nha-cai-deep-dive__section {
  padding: 60px 20px;
}

.page-blog-12win-nha-cai-deep-dive__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-12win-nha-cai-deep-dive__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-blog-12win-nha-cai-deep-dive__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-blog-12win-nha-cai-deep-dive__section-title--light {
  color: var(--gold-color);
}

.page-blog-12win-nha-cai-deep-dive__text-block {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}

.page-blog-12win-nha-cai-deep-dive__text-block--light {
  color: var(--text-secondary-color);
}

.page-blog-12win-nha-cai-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-12win-nha-cai-deep-dive__feature-grid,
.page-blog-12win-nha-cai-deep-dive__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-12win-nha-cai-deep-dive__feature-card,
.page-blog-12win-nha-cai-deep-dive__step-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--text-main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
}

.page-blog-12win-nha-cai-deep-dive__feature-card .page-blog-12win-nha-cai-deep-dive__card-title,
.page-blog-12win-nha-cai-deep-dive__step-card .page-blog-12win-nha-cai-deep-dive__card-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-color);
}

.page-blog-12win-nha-cai-deep-dive__feature-card .page-blog-12win-nha-cai-deep-dive__card-text,
.page-blog-12win-nha-cai-deep-dive__step-card .page-blog-12win-nha-cai-deep-dive__card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-secondary-color);
  text-align: left;
}

.page-blog-12win-nha-cai-deep-dive__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-blog-12win-nha-cai-deep-dive__sub-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.page-blog-12win-nha-cai-deep-dive__card-button {
  margin-top: auto; /* Push button to the bottom */
  width: fit-content; /* Adjust width to content */
  max-width: 100%;
  align-self: center;
}

.page-blog-12win-nha-cai-deep-dive__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  max-width: 800px; /* Limit max width for a cleaner look */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-blog-12win-nha-cai-deep-dive__faq-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333333;
}

.page-blog-12win-nha-cai-deep-dive__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-12win-nha-cai-deep-dive__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-12win-nha-cai-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #ffffff;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-12win-nha-cai-deep-dive__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-12win-nha-cai-deep-dive__faq-question:hover {
  background-color: #f0f0f0;
}
}