﻿/* WP Glossary Manager Frontend Styles */
.wpgm-glossary-wrapper {
  margin: 0 auto; 
}
.wpgm-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
.wpgm-read-more {
    margin-top: auto;
}
.wpgm-entry-title a {
    color: #000;
}
.wpgm-entry-title a:hover {
    color: #000;
}
.wpgm-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wpgm-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
@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: 2.2rem;
    line-height: 1.3;
    font-family: 'Bebas Kai';
    font-style: normal;
    font-weight: normal;
}
.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: #1a202c;
}
.wpgm-meta-item svg {
  color: #1a202c;
}
.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 25px;
    background-color: #cc501c;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    border-radius: 0;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-family: 'Bebas Kai';
    font-weight: normal;
    line-height: 1;
}
.wpgm-btn-read-more:hover {
  background-color: #554742;
  color: #ffffff;
}
.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: transparent;
    color: #4c3e39;
    border: 1px solid #4c3e39;
    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: #4c3e39;
    color: #fff;
    border-color: #4c3e39;
}
.wpgm-no-results {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  border: 1px dashed #ccc;
}
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;
	justify-content: center;
}

.wpgm-breadcrumb .breadcrumb-item {
  margin-right: 15px;
    margin-bottom: 0;
}
.wpgm-breadcrumb .breadcrumb-item a {
    text-decoration: underline;
	color: #1a202c;
}
.wpgm-breadcrumb .breadcrumb-item a:hover {
    text-decoration: none;
}
.wpgm-breadcrumb .breadcrumb-item span {
	text-decoration: none;
    color: #1a202c;
    font-weight: normal;
}
.wpgm-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	content: "/";
    margin-right: 0.25rem;
    position: relative;
    inset: 0;
}
.wpgm-breadcrumb .breadcrumb-item.active {
  font-weight: bold;
}
@media (max-width:575px) {
	.page-template-glossary .blog-post-catering .row {
		margin: 0;
	}
}
