@charset "UTF-8";
.article-hero {
  position: relative;
  height: 500px;
  min-height: 500px;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center; }
  .article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); }
  @media (max-width: 767px) {
    .article-hero {
      height: auto;
      min-height: auto;
      border-bottom: 1px solid #f4f3f1; }
      .article-hero::before {
        display: none !important; } }

.article-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px; }
  @media (max-width: 767px) {
    .article-hero-content {
      padding: 15px 0.625rem;
      gap: 15px;
      text-align: start; } }

.article-hero-breadcrumbs {
  width: 100%;
  max-width: 100%;
  padding: 0 1rem; }
  .article-hero-breadcrumbs .rank-math-breadcrumb p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    list-style: none;
    padding: 0;
    margin: 0; }
  .article-hero-breadcrumbs .rank-math-breadcrumb a,
  .article-hero-breadcrumbs .rank-math-breadcrumb span {
    color: #ffffff; }
  .article-hero-breadcrumbs .rank-math-breadcrumb li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    position: relative; }
    .article-hero-breadcrumbs .rank-math-breadcrumb li a {
      color: #ffffff;
      text-decoration: none;
      transition: all 150ms ease;
      padding: 4px 8px;
      border-radius: 4px;
      position: relative;
      display: inline-block; }
      .article-hero-breadcrumbs .rank-math-breadcrumb li a:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px); }
      .article-hero-breadcrumbs .rank-math-breadcrumb li a:active {
        transform: translateY(0); }
    .article-hero-breadcrumbs .rank-math-breadcrumb li:last-child a {
      color: #ffffff;
      font-weight: 600;
      cursor: default; }
      .article-hero-breadcrumbs .rank-math-breadcrumb li:last-child a:hover {
        background-color: transparent;
        transform: none; }
    .article-hero-breadcrumbs .rank-math-breadcrumb li:last-child span {
      display: none; }
    .article-hero-breadcrumbs .rank-math-breadcrumb li span {
      color: rgba(255, 255, 255, 0.5);
      margin: 0 4px;
      font-size: 0.75rem;
      user-select: none; }
  .article-hero-breadcrumbs .rank-math-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    font-size: 0.75rem;
    opacity: 0.7;
    user-select: none; }
    .article-hero-breadcrumbs .rank-math-breadcrumb .separator svg {
      width: 12px;
      height: 12px;
      fill: currentColor;
      vertical-align: middle; }
  .article-hero-breadcrumbs .rank-math-breadcrumb .home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 4px;
    vertical-align: middle; }
  @media (max-width: 767px) {
    .article-hero-breadcrumbs {
      margin-bottom: 12px;
      padding: 0 0.5rem; }
      .article-hero-breadcrumbs .rank-math-breadcrumb p {
        font-size: 0.8125rem;
        gap: 4px; }
      .article-hero-breadcrumbs .rank-math-breadcrumb li a {
        padding: 3px 6px;
        font-size: 0.8125rem; }
      .article-hero-breadcrumbs .rank-math-breadcrumb li span {
        margin: 0 3px;
        font-size: 0.6875rem; }
      .article-hero-breadcrumbs .rank-math-breadcrumb .separator {
        margin: 0 4px;
        font-size: 0.6875rem; } }

.article-hero-title {
  width: 100%; }
  .article-hero-title .h1 {
    color: #ffffff; }
    @media (max-width: 767px) {
      .article-hero-title .h1 {
        color: #383839; } }

@media (max-width: 767px) {
  .breadcrumbs a,
  nav.breadcrumbs span {
    color: #383839; } }

.article-container {
  position: relative;
  background: #ffffff;
  z-index: 2;
  padding-bottom: 3rem;
  margin-top: 5rem;
  margin-bottom: 5rem; }

.article-header {
  text-align: center;
  margin-bottom: 60px; }

.article-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em; }

.article-intro {
  font-size: 1.25rem;
  color: #5a6c7d;
  line-height: 1.8;
  max-width: 90%;
  margin: 0 auto;
  font-weight: 500; }

.author-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  padding: 40px;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 300ms ease;
  padding-top: 1.5rem;
  margin-top: 2rem; }
  @media (max-width: 767px) {
    .author-box {
      flex-direction: column;
      text-align: center;
      padding: 30px; } }

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #f8f9fa;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.author-info h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700; }
.author-info p {
  margin-bottom: 15px; }

.author-link {
  display: inline-flex;
  align-items: center;
  color: #17a2b8;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 150ms ease; }
  .author-link:hover {
    border-color: #17a2b8; }

.author-info .social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px; }

.author-info .social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 150ms ease; }
  .author-info .social-icon:hover {
    border-color: #17a2b8;
    color: #17a2b8; }
  .author-info .social-icon svg {
    width: 18px;
    height: 18px; }

.widget_goatwonderlust_author_box_widget .author-box {
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  gap: 1rem; }
.widget_goatwonderlust_author_box_widget .author-avatar {
  width: 72px;
  height: 72px; }
.widget_goatwonderlust_author_box_widget .author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: center; }
.widget_goatwonderlust_author_box_widget .author-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  text-align: center; }
.widget_goatwonderlust_author_box_widget .author-info .social-links {
  margin-top: 0px;
  justify-content: center; }

.widget_goatwonderlust_author_box_widget .author-box {
  flex-direction: column;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding-top: 0;
  margin-top: 0; }
  @media (max-width: 767px) {
    .widget_goatwonderlust_author_box_widget .author-box {
      flex-direction: column;
      text-align: center;
      padding: 30px; } }

.table-of-contents {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 1rem;
  margin: 50px 0;
  border-right: 5px solid #d4a574; }
  .table-of-contents h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px; }
    .table-of-contents h3::before {
      content: "📑";
      font-size: 1.2rem; }
  .table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .table-of-contents li {
    margin-bottom: 15px; }
    .table-of-contents li:last-child {
      margin-bottom: 0; }
  .table-of-contents a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 150ms ease;
    display: block;
    padding: 8px 15px;
    border-radius: 0.5rem; }
    .table-of-contents a:hover {
      background: rgba(0, 0, 0, 0.05);
      color: #17a2b8;
      transform: translateX(-5px); }

.article-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .article-content table {
      display: block;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      position: relative;
      padding-bottom: 28px;
      border-radius: 10px; }
      .article-content table::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 22%), linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 22%);
        opacity: 0.9; }
      .article-content table::after {
        content: "اسحب ↔";
        position: sticky;
        right: 12px;
        bottom: 10px;
        display: inline-block;
        width: fit-content;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.65);
        color: #ffffff;
        font-size: 12px;
        line-height: 1;
        pointer-events: none; }
      .article-content table th,
      .article-content table td {
        white-space: nowrap; } }
  .article-content a:hover {
    text-decoration: none; }
  .article-content img {
    margin: 0; }
  .article-content .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0px;
    padding-bottom: 0px;
    position: relative; }
    @media (max-width: 767px) {
      .article-content .section-heading {
        font-size: 1.75rem; } }
  .article-content ul,
  .article-content ol {
    margin-bottom: 0px;
    padding-right: 0px;
    margin-bottom: 0; }
    .article-content ul li,
    .article-content ol li {
      margin-bottom: 10px; }
  .article-content a:not(.btn) {
    color: #17a2b8;
    font-weight: 700;
    text-decoration: underline; }
    .article-content a:not(.btn):hover {
      text-decoration: none; }

.article-content ul:not(.accordion) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style-type: none; }
  .article-content ul:not(.accordion) li {
    color: #383839; }
    .article-content ul:not(.accordion) li:before {
      color: #17a2b8;
      content: "•";
      display: inline-block;
      margin-left: -1rem;
      width: 1rem; }

.article-content h1 {
  font-size: 40px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border-spacing: 0; }

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0; }

table td,
table th,
.wp-block-table td,
.wp-block-table th,
.wp-block-calendar tbody td,
.wp-block-calendar th,
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  padding: 0.5em;
  border: 1px solid #2d2a2d;
  word-break: break-all;
  text-align: center; }

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6; }

th {
  font-weight: 600;
  background-color: #f8f9fa; }

th,
td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--color-gray-300); }

th {
  font-weight: var(--font-weight-semibold);
  background-color: var(--color-bg-secondary); }

.article-image {
  width: 100%;
  border-radius: 1rem;
  margin: 50px 0;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transition: transform 300ms ease;
  height: auto; }
  .article-image:hover {
    transform: scale(1.01); }

.tips-list {
  background: #f0fff4;
  padding: 40px;
  border-radius: 1rem;
  margin: 40px 0;
  border: 1px solid rgba(40, 167, 69, 0.1); }
  .tips-list ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .tips-list li {
    position: relative;
    padding-right: 35px;
    margin-bottom: 18px;
    color: #145523;
    font-weight: 500; }
    .tips-list li::before {
      content: "✓";
      position: absolute;
      right: 0;
      top: 0;
      color: #28a745;
      font-weight: bold;
      font-size: 1.2rem;
      background: rgba(40, 167, 69, 0.1);
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0; }

.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 300ms ease; }
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: #17a2b8; }
  .benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700; }
  .benefit-card p {
    color: #8b9cad;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0; }

.quote-box {
  background: linear-gradient(to left, rgba(23, 162, 184, 0.05), transparent);
  border-right: 5px solid #17a2b8;
  padding: 40px;
  margin: 50px 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #17a2b8;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  border-radius: 0.5rem; }
  .quote-box::before {
    content: "\"";
    display: block;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.2; }

.cta-section {
  background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
  color: #ffffff;
  padding: 80px 40px;
  border-radius: 1.5rem;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden; }
  .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1; }
  .cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    z-index: 2; }
    @media (max-width: 767px) {
      .cta-section h3 {
        font-size: 2rem; } }
  .cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2; }

.cta {
  background-color: #f5f5f5;
  flex-direction: column;
  gap: 1.5rem;
  padding: 15px;
  border-radius: 0.5rem;
  border: 1px solid #e4e6e8; }
  .cta a {
    color: white; }

.cta ul li a {
  font-size: 14px;
  text-decoration: none !important; }

.cta ul li {
  margin-bottom: 0; }

.related-section {
  background: #ffffff;
  padding: 15px;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 1.5rem; }
  .related-section h2 {
    margin: 0 0 2rem; }

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; }
  @media (min-width: 992px) {
    .related-grid {
      grid-template-columns: repeat(3, 1fr); } }

.related-card {
  background: #ffffff;
  text-decoration: none;
  display: block;
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
  border: 1px solid #e4e6e8; }

.related-card-image {
  height: 220px;
  background: #e9ecef;
  overflow: hidden; }
  .related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s; }

.related-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }
  .related-card-content h4 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4; }

.faq-section {
  gap: 1rem !important; }

.faq-section {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto; }
  .faq-section .faq-question {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: clamp(1.1875rem, 1.6666666667vw, 1.5rem); }

[dir="rtl"] .table-of-contents {
  border-right: 5px solid #d4a574;
  border-left: none; }
[dir="rtl"] .article-content .section-heading::after {
  right: 0;
  left: auto; }
[dir="rtl"] .tips-list li {
  padding-right: 35px;
  padding-left: 0; }
  [dir="rtl"] .tips-list li::before {
    right: 0;
    left: auto; }
[dir="rtl"] .quote-box {
  border-right: 5px solid #17a2b8;
  border-left: none; }

/*# sourceMappingURL=single.css.map */
