/*
Theme Name: WMD Theme
*/

/*html :where(img){height:inherit;max-width:none;}*/
*{
  box-sizing:border-box;
}

.top-bar .image-element__svg {
    max-height: revert !important;
}

.name_author_out p , .date-author-cl{
    font-size: 16px;
}

.main-content span {
    margin-bottom: 10px;
    display: block;
}
.main-content li span, .main-content h1 span, .main-content h2 span, .main-content h3 span, .main-content h4 span, .main-content h5 span, .main-content h6 span, .main-content table tr td span, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6{
    margin-bottom: 0px;
    display: inline;
}
.main-content .table-responsive {
  width: 100%;
  overflow-x: auto;
	margin-top: 20px;
  margin-bottom: 27px;
}

.main-content .table-responsive table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.main-content .table-responsive table th, .main-content .table-responsive table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}
.footer{
	    padding: 20px 0px;
}
@media (min-width: 768px) { 
.main-content {
    max-width: 1440px;
    margin: auto;
    padding: 10px 60px;
}
.top-bar {
        max-width: 1440px;
        margin: auto;
        padding: 30px 0px;
    }
}
@media (min-width: 758px) {
    .footer {
        max-width: 1440px;
    }
}
@media (max-width: 768px) { 
.main-content {
    padding: 10px 20px;
}
	.menu-desktop .list > ul {
    display: none !important;
}
}




.custom_top_author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.author_imag img {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 0;
}
.name_author_out {
    display: flex;
	  align-items: center;
    margin-bottom: 5px;
}
.name_author_out span.lbl {
    margin-right: 5px;
}
.name_author_out p {
    margin-bottom: 0;
	  margin-top: 0;
}
.custom_top_author .date-author-cl {
    display: flex;
    align-items: center;
}
.main-content .date-author-cl span {
    margin-bottom: 0px;
    display: block;
}
.main-content .custom_author_info span {
    margin-bottom: 0px;
    display: block;
}
.list ul.menu {
    padding-left: 0;
}

.main-content .aligncenter {
    clear: both;
    margin: 0 auto;
    display: block;
	  height: 100%;
}
.container {
    max-width: 1440px;
}


/** New Css **/
.main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
    margin-top: 30px;
    display: block;
}
.main-content .aligncenter {
    padding-top: 20px;
	  padding-bottom: 10px;
}
.main-content li {
    margin-bottom: 10px;
}
.main-content li:last-child {
    margin-bottom: 0px;
}
.main-content .table-responsive {
  width: 100%;
  overflow-x: auto;
}

.main-content .table-responsive table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

/* Transparent top bar, dark text */
.menu-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: transparent !important;
  color: #111111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border: none;
  box-shadow: none;
}

/* Left side menu wrapper */
.menu-desktop .list {
  position: relative;              /* anchor for dropdowns */
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

/* UL that holds menu items */
.menu-desktop .list > ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Main menu items (links + buttons) */
.menu-desktop .list__item {
  border: none;
  background: transparent;
  color: #111111;                  /* black text */
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

/* Remove default button styles */
.menu-desktop button.list__item {
  font: inherit;
  outline: none;
}

/* Hover state for top-level items */
.menu-desktop .list__item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
  transform: translateY(-1px);
}

/* Dropdown container */
.menu-desktop .drop-content {
  position: absolute;
  left: 0;                          /* aligned with left edge of menu area */
  top: 100%;                        /* directly under the bar – no extra gap */
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0.75rem;
  padding: 0.4rem 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  /* remove vertical translate to avoid gaps */
  transform: translateY(0);
  transition: opacity 0.18s ease;
  z-index: 20;
}

/* Show the dropdown that immediately follows the hovered item */
.menu-desktop .list__item:hover + .drop-content,
.menu-desktop .drop-content:hover {
  opacity: 1;
  pointer-events: auto;
}

/* Dropdown links */
.menu-desktop .drop-content__item {
  display: block;
  padding: 0.55rem 1.1rem;
  color: #111111;
  font-weight: 400;
  text-decoration: none;
  font-size: 1.2rem;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}

.menu-desktop .drop-content__item:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #000000;
}

/* Social icons */
.menu-desktop .social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.menu-desktop .social-links__link,
.menu-desktop .social-links span.fa {
  color: #444444;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease, transform 0.12s ease, background 0.12s ease;
}

.menu-desktop .social-links__link:hover,
.menu-desktop .social-links span.fa:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  transform: translateY(-1px);
}

/* Wrapper for better responsiveness */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Header row */
table thead tr,
table tbody tr:first-child {
  background: #111827;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}

table th, table td {
  padding: 14px 18px;
  font-size: 1rem;
  line-height: 1.4;
}


/* Alternating rows */
table tbody tr:nth-child(even) {
  background: #f9fafb;
}



/* Make YES/NO more visible if needed */
table td:last-child {
  font-weight: 500;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  table,
  tbody,
  tr,
  td,
  th {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 12px;
  }

  td {
    padding: 8px 12px !important;
    border: none;
  }
}

#sCTA_Sticky_Newsletter_0_0_3_0_0_1_0 a:hover {
    color: rgb(66, 103, 178);
}

/* ALL tablets – hamburger icon fix */
@media only screen 
and (min-width: 768px) 
and (max-width: 1366px) {

  .hamburger-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999; /* icon hamesha visible rahe */
  }
.menu-desktop .list {
	
	display: none;
}
}

	