/* WP Glossary Manager Frontend Styles */
.wpgm-glossary-wrapper {
  margin: 0 auto; 
}
.wpgm-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
.wpgm-entry-title a {
    color: #fff;
}
.wpgm-no-results p {
	color: #fff;
	margin: 0;
}
.wpgm-entry-title a:hover {
    color: #fff;
}
.wpgm-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wpgm-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.wpgm-read-more {
    margin-top: auto;
}
@media (max-width: 992px) {
  .wpgm-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .wpgm-grid {
    grid-template-columns: 1fr;
  }
}
.wpgm-card {
   overflow: hidden;
    position: relative;
    border: 1px solid #b5b5b566;
    display: flex;
    flex-direction: column;
}
.wpgm-card-inner {
    padding: 20px;
    display: flex;
    height: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: flex-start;
}
.wpgm-entry-title {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.wpgm-entry-title a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.wpgm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #666;
}
.wpgm-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}
.wpgm-meta-item svg {
  color: #ffffff;
}
.wpgm-entry-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 25px;
  flex-grow: 1;
}
.wpgm-flex-grow {
  flex-grow: 1 !important;
}
.wpgm-entry-excerpt p {
  margin: 0;
}
.wpgm-btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #B5B5B5;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    border-radius: 0;
    transition: all 0.2s ease;
    text-transform: uppercase;
    border: 1px solid #cccccc63;
}
.wpgm-btn-read-more:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: #fff;
}
.wpgm-btn-read-more svg {
  transition: transform 0.2s ease;
	display: none;
}
.wpgm-btn-read-more:hover svg {
  transform: translateX(4px);
}
.wpgm-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.wpgm-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wpgm-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}
.wpgm-pagination .page-numbers:hover,
.wpgm-pagination .page-numbers.current {
  background: #FFFFFF;
  color: #222;
  border-color: #444;
}
.wpgm-no-results {
    background: #000;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    border: 1px dashed #383838;
}
span.wpgm-pagination-info {
    display: none;
}
.single-post .wpgm-meta.wpgm-flex-grow {
    justify-content: center;
    margin-top: 20px;
}
.wpgm-breadcrumb {
						margin-bottom: 2rem;
					}

					.wpgm-breadcrumb .breadcrumb-list {
						list-style: none;
						padding: 0;
						margin: 0;
						display: flex;
						flex-wrap: wrap;
						align-items: center;
					}

					.wpgm-breadcrumb .breadcrumb-item {
						margin-right: 0.5rem;
    					margin-bottom: 0;
					}
.wpgm-breadcrumb .breadcrumb-item a {
    text-decoration: underline;
	color: #B5B5B5;
}
.wpgm-breadcrumb .breadcrumb-item a:hover {
    text-decoration: none;
}
.wpgm-breadcrumb .breadcrumb-item span {
    text-decoration: none;
	color: #B5B5B5;
	    font-weight: 300;
}

					.wpgm-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
						content: "/";
						margin-right: 0.25rem;
					}

					.wpgm-breadcrumb .breadcrumb-item.active {
						font-weight: bold;
					}