<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.model-home-images[data-v-a41cc934] {
  padding: 1rem;
}
@media (min-width: 1150px) {
.model-home-images[data-v-a41cc934] {
    padding: 1.5rem;
}
}
.model-gallery[data-v-a41cc934] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1150px) {
.model-gallery[data-v-a41cc934] {
    grid-template-columns: repeat(2, 1fr);
}
}
.image-container[data-v-a41cc934] {
  width: 100%;
  outline: 1px solid #f2894f;
}
.image-wrapper[data-v-a41cc934] {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.image-wrapper:hover .magnifying-glass[data-v-a41cc934] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.image-wrapper[data-v-a41cc934]:focus-visible {
  outline: 3px solid #f2894f;
  outline-offset: 3px;
}
.image-wrapper:focus-visible .magnifying-glass[data-v-a41cc934] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.magnifying-glass[data-v-a41cc934] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #f2894f;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  outline: 1px solid white;
}
.magnifying-glass[data-v-a41cc934]::before {
  font-family: "FontAwesome";
  content: "\f002";
  font-weight: 900;
  color: white;
  font-size: 1rem;
}
.image-caption[data-v-a41cc934] {
  padding: 1rem;
}
.image-caption h2[data-v-a41cc934] {
  font-size: 1.5rem;
  font-weight: 800;
  color: #3d3c37;
}
.image-caption p[data-v-a41cc934] {
  font-size: 0.875rem;
  color: #888;
  font-weight: 800;
  text-transform: uppercase;
}
.gallery-image[data-v-a41cc934] {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.filters-container {
  padding: 2rem;
  border-right: 1px solid #E5E5E5;
}
@media (min-width: 800px) {
.filters-container {
    width: 200px;
}
}
.filtered-by-section {
  border-bottom: 1px solid #E5E5E5;
  padding: 1rem 0 1rem 0;
}
.filtered-by-section h3 {
  color: #f2894f;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.filtered-by-section .filtered-by-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filtered-by-section .filtered-by-tags .filter-tag {
  background-color: #f2894f;
  color: white;
  padding: 0.5rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
}
.filtered-by-section .filtered-by-tags .filter-tag .remove-tag {
  margin-left: 0.5rem;
  cursor: pointer;
}
.filtered-by-section .filtered-by-tags .filter-tag .remove-tag:before {
  content: '\f057';
  font-family: "FontAwesome";
  font-size: 14px;
}
.filters {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
.filters {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}
.filter-group {
  border-bottom: 1px solid #E5E5E5;
  padding: 1rem 0 1rem 0;
}
.filter-group .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  transition: background-color 0.2s ease;
}
.filter-group .filter-header:focus-within {
  outline: 3px solid #f2894f;
}
.filter-group .filter-header h3 {
  color: #f2894f;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.filter-group .filter-header .expand-icon {
  cursor: pointer;
  position: relative;
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.filter-group .filter-header .expand-icon:before {
  content: '\f077';
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.filter-group .filter-header .expand-icon.rotate-180 {
  transform: rotate(180deg);
}
.filter-group .checkbox-label {
  display: flex;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
  font-size: 14px;
}
.filter-group .checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 0.8px solid #E5E5E5;
  border-radius: 2px;
  margin-right: 12px;
  position: relative;
  cursor: pointer;
}
.filter-group .checkbox-label input[type="checkbox"]:checked {
  background-color: #f2894f;
  border-color: #f2894f;
}
.filter-group .checkbox-label input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-group .checkbox-label input[type="checkbox"]:focus-within {
  outline: 3px solid #f2894f;
  outline-offset: 3px;
}
.mobile-filter-toggle {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #f2894f;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 800px) {
.mobile-filter-toggle {
    display: none;
}
}
.filters-content {
  display: none;
}
@media (min-width: 800px) {
.filters-content {
    display: block;
}
}
.filters-content.show-mobile-filters {
  display: block;
}

[tabindex="0"][data-v-248940fe]:focus-visible,
a[data-v-248940fe]:focus-visible,
button[data-v-248940fe]:focus-visible {
  outline: 3px solid #f2894f;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(242, 137, 79, 0.5);
  transition: outline-color 0.2s ease-in-out;
}
.lightbox-overlay[data-v-248940fe] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
@media (min-width: 1150px) {
.lightbox-overlay[data-v-248940fe] {
    background-color: rgba(0, 0, 0, 0.9);
}
}
.lightbox-container[data-v-248940fe] {
  width: 95%;
  max-height: 95%;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  color: white;
}
.lightbox-header[data-v-248940fe] {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  outline: 1px solid #fff;
  position: relative;
}
@media (min-width: 1150px) {
.lightbox-header[data-v-248940fe] {
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr auto;
    align-items: center;
    padding: 1.5rem;
}
}
.lightbox-header .model-info[data-v-248940fe] {
  grid-column: 1;
  grid-row: 1;
}
.lightbox-header .model-info h2[data-v-248940fe] {
  margin-bottom: 0.05rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}
@media (min-width: 1150px) {
.lightbox-header .model-info h2[data-v-248940fe] {
    margin-bottom: 0.25rem;
}
}
.lightbox-header .model-info p[data-v-248940fe] {
  font-size: 0.85rem;
  font-weight: 900;
  margin-top: 0;
  color: #9D9D9D;
}
@media (min-width: 1150px) {
.lightbox-header .model-info p[data-v-248940fe] {
    font-weight: 700;
    font-size: 1rem;
}
}
.lightbox-header .model-address[data-v-248940fe] {
  grid-column: 1;
  grid-row: 3;
  text-align: left;
}
@media (min-width: 1150px) {
.lightbox-header .model-address[data-v-248940fe] {
    grid-column: 2;
    grid-row: 1;
}
}
.lightbox-header .model-address p[data-v-248940fe] {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 400;
  margin: 0.25rem 0;
}
@media (min-width: 1150px) {
.lightbox-header .model-address p[data-v-248940fe] {
    font-weight: 500;
    font-size: 1rem;
}
}
.lightbox-header .model-region[data-v-248940fe] {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 1150px) {
.lightbox-header .model-region[data-v-248940fe] {
    grid-column: 3;
    grid-row: 1;
    font-size: 1rem;
}
}
.lightbox-header .model-community[data-v-248940fe] {
  grid-column: 1;
  grid-row: 4;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 1150px) {
.lightbox-header .model-community[data-v-248940fe] {
    grid-column: 4;
    grid-row: 1;
    font-size: 1rem;
}
}
.lightbox-header .model-community a[data-v-248940fe] {
  color: #f2894f;
  text-decoration: underline;
}
.lightbox-close[data-v-248940fe] {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
@media (min-width: 1150px) {
.lightbox-close[data-v-248940fe] {
    position: static;
}
}
.lightbox-close[data-v-248940fe]::before {
  font-family: "FontAwesome";
  content: "\f00d";
  font-weight: 700;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.lightbox-close[data-v-248940fe]:focus::before {
  color: #f2894f;
}
.lightbox-content[data-v-248940fe] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-content .image-wrapper[data-v-248940fe] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-content .image-wrapper img[data-v-248940fe] {
  max-width: 100%;
  object-fit: contain;
}
@media (min-width: 1150px) {
.lightbox-content .image-wrapper img[data-v-248940fe] {
    max-width: 70vw;
    max-height: 70vh;
}
}
.nav-arrow[data-v-248940fe] {
  position: absolute;
  top: 92%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  outline: 1px solid #fff;
}
@media (min-width: 380px) {
.nav-arrow[data-v-248940fe] {
    top: 85%;
}
}
@media (min-width: 1150px) {
.nav-arrow[data-v-248940fe] {
    top: 50%;
    width: 5rem;
    height: 5rem;
}
}
.nav-arrow.prev[data-v-248940fe] {
  left: 30%;
}
@media (min-width: 1150px) {
.nav-arrow.prev[data-v-248940fe] {
    left: 5%;
}
}
.nav-arrow.prev[data-v-248940fe]::before {
  font-family: "FontAwesome";
  content: "\f104";
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.nav-arrow.next[data-v-248940fe] {
  right: 30%;
}
@media (min-width: 1150px) {
.nav-arrow.next[data-v-248940fe] {
    right: 5%;
}
}
.nav-arrow.next[data-v-248940fe]::before {
  font-family: "FontAwesome";
  content: "\f105";
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.nav-arrow[data-v-248940fe]:hover {
  background-color: #f2894f;
  color: #fff;
}
.nav-arrow[data-v-248940fe]:focus::before {
  color: #f2894f;
}
.lightbox-footer[data-v-248940fe] {
  margin-top: 2rem;
  text-align: center;
}
.lightbox-footer .counter[data-v-248940fe] {
  font-size: 1rem;
}
.hidden[data-v-248940fe] {
  display: none;
}

.fuzzy-search[data-v-7751eccb] {
  border-bottom: 1px solid #E5E5E5;
  padding: 1rem 0 1rem 0;
}
.fuzzy-search .search-input-container[data-v-7751eccb] {
  position: relative;
}
.fuzzy-search .search-input-container[data-v-7751eccb]::before {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  z-index: 1;
}
.fuzzy-search .search-input-container.has-suggestions .fuzzy-search-input[data-v-7751eccb] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  clip-path: inset(-10px -10px 0 -10px);
}
.fuzzy-search .search-input-container.has-suggestions hr[data-v-7751eccb] {
  display: block;
  border-top: 1px solid #ccc;
  height: 0;
  width: 85%;
  margin: 0 auto;
}
.fuzzy-search .search-input-container .clear-search[data-v-7751eccb] {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  padding: 0;
  cursor: pointer;
  color: #ccc;
  display: flex;
  justify-content: end;
  min-width: unset;
}
.fuzzy-search .search-input-container .clear-search[data-v-7751eccb]::before {
  content: "\f057";
  font-family: "FontAwesome";
}
.fuzzy-search .search-input-container .clear-search[data-v-7751eccb]:hover {
  color: #f2894f;
}
.fuzzy-search .search-input-container .fuzzy-search-input[data-v-7751eccb] {
  width: 100%;
  padding: 0.5rem 0 0.5rem 1.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.fuzzy-search .search-input-container .fuzzy-search-input[data-v-7751eccb]:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.fuzzy-search .search-input-container hr[data-v-7751eccb] {
  display: none;
}
.fuzzy-search .suggestions-list[data-v-7751eccb] {
  list-style-type: none;
  padding: 0;
  margin: -1px 0 0 0;
  border: 1px solid #ccc;
  border-radius: 0 0 5px 5px;
  border-top: none;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  clip-path: inset(0 -10px -10px -10px);
}
.fuzzy-search .suggestion-item[data-v-7751eccb] {
  padding: 0.5rem;
  cursor: pointer;
}
.fuzzy-search .suggestion-item[data-v-7751eccb]:hover {
  background-color: #f0f0f0;
}
.fuzzy-search .suggestion-item.active[data-v-7751eccb] {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
}
.fuzzy-search .no-results[data-v-7751eccb] {
  padding: 0.5rem;
  color: #666666;
  text-align: center;
  border: 1px solid #ccc;
  margin-top: -1px;
  background-color: #f8f8f8;
}
.fuzzy-search .screen-reader-only[data-v-7751eccb] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.model-home-gallery-title[data-v-2ae933ee] {
  text-align: center;
  padding: 3rem 0 1rem 0;
  font-weight: 900;
  font-size: 3rem;
}
@media (min-width: 800px) {
.model-home-gallery-title[data-v-2ae933ee] {
    text-align: left;
    padding: 3rem 0 1rem 1.5rem;
}
}
.model-home-gallery-main[data-v-2ae933ee] {
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
.model-home-gallery-main[data-v-2ae933ee] {
    flex-direction: row;
}
}

</pre></body></html>