/* style/blog-thabet-link-guide.css */

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

.page-blog-thabet-link-guide {
  font-family: 'Arial', sans-serif;
  background-color: var(--background-color);
  color: var(--text-main);
  line-height: 1.6;
}

/* Sections */
.page-blog-thabet-link-guide__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-thabet-link-guide__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-thabet-link-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-thabet-link-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is decorative */
  overflow: hidden;
  background-color: var(--background-color);
}

.page-blog-thabet-link-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px; /* Limit height for aesthetic */
  object-fit: cover;
  display: block;
}

.page-blog-thabet-link-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 40px;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-thabet-link-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-thabet-link-guide__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Titles & Paragraphs */
.page-blog-thabet-link-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-color);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}