/*
Theme Name: Azp
Theme URI: https://azpirantz.com/
Author: Your Name
Author URI: https://azpirantz.com/
Description: Custom WordPress theme Azpirantz.com 
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Azp
*/
/*------- nav bredcrumb sec start -------*/
nav[aria-label="breadcrumb"] .breadcrumb {
  font-family: var(--Nunito);
  display: flex;
  gap: 8px;
  align-items: center;
}

nav[aria-label="breadcrumb"] .breadcrumb .breadcrumb-item {
  list-style: none;
}

nav[aria-label="breadcrumb"] .breadcrumb .breadcrumb-item::after {
  display: none;
}

nav[aria-label="breadcrumb"] .breadcrumb-item+.breadcrumb-item::before {
  content: '>';
  /* or use emoji */
  padding-right: 0.5rem;
  overflow: hidden;
  color: var(--disable-grey);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

nav[aria-label="breadcrumb"] .breadcrumb .breadcrumb-item a {
  overflow: hidden;
  color: var(--dark-grey);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

nav[aria-label="breadcrumb"] .breadcrumb .breadcrumb-item.active {
  color: var(--red);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*------- nav bredcrumb sec end -------*/

/*----------- Blog Details Section -----------*/
.blog-details-intro .cat-bedge {
  padding: 8px 16px;
  color: var(--red);
  font-family: var(--Nunito);
  background: var(--light-red);
  border-radius: 16px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.blog-details-intro h1 {
  color: var(--dark);
}


.blog-details-content {
  font-family: var(--Nunito);
  font-size: 16px;
  line-height: 1.8;
}

.blog-details-content h1,
.blog-details-content h2,
.blog-details-content h3,
.blog-details-content h4 {
  color: var(--dark);
  font-family: var(--Raleway);
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog_content_block{color: var(--dark);
  font-family: var(--Raleway);
  margin-bottom: 16px;
  line-height: 1.4;}

.blog-details-content p {
  margin-bottom: 16px;
}

.blog-details-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
  border-radius: 8px;
}

/*------------ List Styling ------------*/

.blog-details-content ul,
.blog-details-content ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.blog-details-content ul li{
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 1.8;
  display: block;
}



.blog-details-content ol {
    margin: 20px 0;
    padding-left: 40px; /* space for numbers */
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
}

/* Style the list items */
.blog-details-content ol li {
    margin-bottom: 10px; /* space between items */
    line-height: 1.6;
    background: #f9f9f9;
    padding: 8px 12px; 
}

/* Optional: custom number styling */
.blog-details-content ol li::marker {
    color: #E50914;
    font-weight: bold;
    font-size: 18px;
}


/* Custom bullet icons by nesting */
.blog-details-content ul li::before {
  content: url('assets/icons/shield-check.svg');
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
}

.blog-details-content ul li ul li::before {
  content: url('assets/icons/check.svg');
}

.blog-details-content ul li ul li ul li::before {
  content: url('assets/icons/arrow.svg');
}

/*------------ Table Styling ------------*/

.blog-details-content table {
  width: 100%;
  margin: 24px 0;
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  overflow: hidden;
  font-size: 16px;
  border-spacing: 0;
}

.blog-details-content table th,
.blog-details-content table td {
  padding: 12px 16px;
  text-align: left;
  border-right: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  font-size: 16px;
}
@media (max-width:768px) {
  .blog-details-content table th,
.blog-details-content table td{
  font-size: 14px;
}
}
.blog-details-content table th {
  background-color: var(--dark);
  color: var(--white);
}

.blog-details-content table tr:nth-child(even) td {
  background-color: var(--grey);
}

.blog-details-content table tr:nth-child(odd) td {
  background-color: var(--white);
}

.blog-details-content table td:last-child {
  border-right: none;
}

/* Responsive table on mobile */
@media (max-width: 768px) {
  .blog-details-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.blog-details-content tr:last-child td{
  border-bottom: 0;
}
/*------------ Empty Tags Cleanup ------------*/

.blog-details-content p:empty,
.blog-details-content span:empty {
  display: none;
}

/*------- blog details sec end -------*/

/*----- blog teable of content side style ------*/
.blog-table-contents ul>li {
  padding: 0;
  margin: 0;
  position: relative;
}

.blog-table-contents ul>li::before {
  content: none;
  line-height: 0;
}

.blog-table-contents ul>li::after {
  content: url('assets/icons/vector-icon.svg');
  line-height: 0;
  position: absolute;
  right: 8px;
}

.blog-table-contents ul>li.active::after {
  content: url('assets/icons/vector-icon-active.svg');
}

.blog-table-contents ul>li>a {
  color: var(--dark-grey);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 8px;
  border-radius: 8px;
}

.blog-table-contents ul>li.active a {
  color: var(--red);
  background: var(--white);
  width: 100%;
}

/*------- style end -------*/


/*----- blog pagination style start ------*/
.pagination .page-item::before {
  display: none;
}

.pagination .page-item {
  width: 36px;
  aspect-ratio: 1;
  background: var(--light-red);
  border-radius: 36px;
  display: flex;
  justify-content: center;
}

.pagination .page-item.active {
  background: var(--red);
}

.pagination .page-item span,
.pagination .page-item a {
  text-align: center;
  color: var(--dark);
  font-size: 16px;
}

.pagination .page-item.active span {
  color: var(--white);
}