/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 28 2025 | 23:40:31 */
.child-territories {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers the buttons */
  gap: 0.5em;
}

.child-territories li {
  margin: 0;
}

.child-territories a {
  display: inline-block;
  background-color: #00853e;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0.4em 1.5em;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}

.child-territories a:hover {
  background-color: #006c31;
}

.term-breadcrumbs {
  text-align: center;
  font-size: 15px;
  color: #ffffff;
  margin: 1em 0;
}

.term-breadcrumbs a {
  color: #ffffff;
  text-decoration: underline;
}

.term-breadcrumbs .current-term {
  color: #ffffff;
  text-decoration: none;
}










.franchises-for-sale-loop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 20px;
}

.franchise-item {
	display: block;
    background: transparent;
    border: none;
    text-align: center;
	text-decoration: none !important;
}

.franchise-title {
	display: block;
    color: #2e8b57;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 2px 0;
    line-height: 1.3;
		text-decoration: none !important;
}
.franchise-item:hover .franchise-title {
	text-decoration: underline !important;
}
.franchise-price {
	display: block;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
	text-decoration: none !important;
}

.franchises-for-sale-loop.no-franchises {
    display: block;
    text-align: center;
    padding: 40px 20px;

}

.franchises-for-sale-loop.no-franchises p {
    font-size: 20px;
	color: #000;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .franchises-for-sale-loop {
        grid-template-columns: 1fr 1fr;
    }
 
    .franchise-title {
        font-size: 18px;
    }
    
    .franchise-price {
        font-size: 13px;
    }
}

