.elementor-41942 .elementor-element.elementor-element-94f291d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-f7e92bd *//*********************************
SCHOLAR POST CONTAINER
**********************************/

.scholoar-post-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: inherit;
  color: #1f2937;
}

/*********************************
TABLE OF CONTENTS - CONSISTENT CARD HEADER
**********************************/

.scholoar-toc-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 0;
}

.scholoar-toc-title {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 15px;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
  border-left: none;
  text-align: left; /* left align */
}

.scholoar-toc-title::before {
  content: "📋";
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #D4AF37;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.scholoar-toc-list {
  margin: 0;
  padding: 25px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.scholoar-toc-list li {
  margin: 0;
}

.scholoar-toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.scholoar-toc-list a:hover {
  background: #fdf0d5;
  border-color: #D4AF37;
  color: #D4AF37;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.12);
}

.scholoar-toc-list a::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fdf0d5;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/*********************************
CARD
**********************************/

.scholoar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/*********************************
CARD HEADER
**********************************/

.scholoar-card-header {
  display: flex;
  align-items: center;
  gap: 0; /* removed gap because number is hidden */
  padding: 10px 15px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

/* Number circle removed completely – no extra space */
.scholoar-card-number {
  display: none;
}

.scholoar-card-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  text-align: left; /* left align */
}

/*********************************
CARD CONTENT
**********************************/

.scholoar-card-content {
  padding: 25px;
}

.scholoar-card-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #000000;
}

.scholoar-card-content ul,
.scholoar-card-content ol {
  padding-left: 22px;
  margin: 15px 0;
}

.scholoar-card-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #000000;
}

/*********************************
NOTE BOX
**********************************/

.scholoar-note {
  background: #fffbeb;
  border-left: 5px solid #f59e0b;
  padding: 18px;
  border-radius: 10px;
  margin: 20px 0;
}

/*********************************
ALERT BOX
**********************************/

.scholoar-alert {
  background: #fef2f2;
  border-left: 5px solid #dc2626;
  padding: 18px;
  border-radius: 10px;
  margin: 20px 0;
}

/*********************************
INFO BOX – golden theme
**********************************/

.scholoar-info {
  background: #fdf8e6;
  border-left: 5px solid #D4AF37;
  padding: 18px;
  border-radius: 10px;
  margin: 20px 0;
}

/*********************************
TABLE
**********************************/

.responsive-table.responsive-table {
  font-family: Arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #9ca3af;
  text-align: left;
  padding: 8px;
}

.responsive-table th {
  background-color: #D4AF37;
  color: #000000;
  font-weight: 600;
}

.responsive-table tr:nth-child(even) {
  background: #f8fafc;
}

/*********************************
LINKS – golden instead of blue
**********************************/

.scholoar-card-content a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
}

.scholoar-card-content a:hover {
  text-decoration: underline;
}

/*********************************
PDF
**********************************/

.scholoar-pdf {
  margin-top: 20px;
}

.scholoar-pdf iframe {
  width: 100%;
  height: 850px;
  border: none;
  border-radius: 12px;
}

/*********************************
SMOOTH SCROLL
**********************************/

html {
  scroll-behavior: smooth;
}

/*********************************
MOBILE
**********************************/

@media (max-width: 768px) {
  .scholoar-post-container {
    gap: 20px;
  }

  .scholoar-toc-card {
    padding: 0;
  }

  .scholoar-toc-title {
    font-size: 18px;
    padding: 10px 15px;
  }

  .scholoar-toc-title::before {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
  }

  .scholoar-toc-list {
    padding: 18px !important;
  }

  .scholoar-toc-list a {
    padding: 12px 15px;
    font-size: 15px;
  }

  .scholoar-card-header {
    padding: 16px;
  }

  .scholoar-card-header h2 {
    font-size: 18px;
  }

  .scholoar-card-content {
    padding: 18px;
  }

  .scholoar-card-number {
    display: none; /* still hidden on mobile */
  }

  .responsive-table {
    font-size: 14px;
  }

  .responsive-table th,
  .responsive-table td {
    padding: 10px;
  }

  .scholoar-pdf iframe {
    height: 500px;
  }
}/* End custom CSS */