.elementor-41455 .elementor-element.elementor-element-875feb6{--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-a75fee5 *//*********************************
SCHOLARSHIP POST CONTAINER
**********************************/

.scholarship-post-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: inherit;
  color: #000000; /* black theme */
}

/*********************************
TABLE OF CONTENTS - CONSISTENT CARD HEADER
**********************************/

/* Make TOC card behave like other cards (no inner padding) */
.scholarship-toc-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 0;
}

/* Transform TOC title into a card header */
.scholarship-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: #000000;
  line-height: 1.4;
  border-left: none;
}

/* Badge - golden */
.scholarship-toc-title::before {
  content: "📋";
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #D4AF37; /* golden */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

/* List container */
.scholarship-toc-list {
  margin: 0;
  padding: 25px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.scholarship-toc-list li {
  margin: 0;
}

.scholarship-toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.scholarship-toc-list a:hover {
  background: #FFF8E7;
  border-color: #D4AF37;
  color: #B8860B;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.scholarship-toc-list a::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FEF3C7;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/*********************************
CARD
**********************************/

.scholarship-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
**********************************/

.scholarship-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.scholarship-card-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #D4AF37;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.scholarship-card-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
}

/*********************************
CARD CONTENT
**********************************/

.scholarship-card-content {
  padding: 25px;
}

.scholarship-card-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #000000;
}

.scholarship-card-content ul,
.scholarship-card-content ol {
  padding-left: 22px;
  margin: 15px 0;
}

.scholarship-card-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #000000;
}

/*********************************
NOTE BOX
**********************************/

.scholarship-note {
  background: #fffbeb;
  border-left: 5px solid #f59e0b;
  padding: 18px;
  border-radius: 10px;
  margin: 20px 0;
}

/*********************************
ALERT BOX
**********************************/

.scholarship-alert {
  background: #fef2f2;
  border-left: 5px solid #dc2626;
  padding: 18px;
  border-radius: 10px;
  margin: 20px 0;
}

/*********************************
INFO BOX - Golden theme
**********************************/

.scholarship-info {
  background: #FFFDF5;
  border-left: 5px solid #D4AF37;
  padding: 18px;
  border-radius: 10px;
  margin: 20px 0;
  color: #000000;
}

/*********************************
TABLE - AUTO COLUMN WIDTH % WISE
**********************************/

/* Table wrapper for horizontal scroll on small screens */
.scholarship-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.responsive-table {
  width: 100%;
  table-layout: auto; /* columns get proportional width based on content */
  border-collapse: collapse;
  font-family: inherit;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #9ca3af;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  word-break: break-word; /* prevent overflow, auto-wrap long content */
}

.responsive-table th {
  background-color: #D4AF37; /* golden header */
  color: #000000;
  font-weight: 700;
}

.responsive-table tr:nth-child(even) {
  background-color: #f8fafc;
}

/* Optional: ensure columns shrink/grow naturally without forcing equal widths */
.responsive-table td {
  white-space: normal;
}

/* For very small screens, keep readability */
@media (max-width: 640px) {
  .responsive-table th,
  .responsive-table td {
    padding: 8px 10px;
    font-size: 14px;
  }
}

/*********************************
LINKS - Golden theme
**********************************/

.scholarship-card-content a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
}

.scholarship-card-content a:hover {
  text-decoration: underline;
  color: #B8860B;
}

/*********************************
PDF
**********************************/

.scholarship-pdf {
  margin-top: 20px;
}

.scholarship-pdf iframe {
  width: 100%;
  height: 850px;
  border: none;
  border-radius: 12px;
}

/*********************************
SMOOTH SCROLL
**********************************/

html {
  scroll-behavior: smooth;
}

/*********************************
MOBILE
**********************************/

@media (max-width: 768px) {
  .scholarship-post-container {
    gap: 20px;
  }

  .scholarship-toc-card {
    padding: 0;
  }

  .scholarship-toc-title {
    font-size: 18px;
    padding: 10px 15px;
  }

  .scholarship-toc-title::before {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
  }

  .scholarship-toc-list {
    padding: 18px !important;
  }

  .scholarship-toc-list a {
    padding: 12px 15px;
    font-size: 15px;
  }

  .scholarship-card-header {
    padding: 16px;
  }

  .scholarship-card-header h2 {
    font-size: 18px;
  }

  .scholarship-card-content {
    padding: 18px;
  }

  .scholarship-card-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }

  .scholarship-pdf iframe {
    height: 500px;
  }
}/* End custom CSS */