/**
 * @file
 * Oastview Portfolio Styles - UPDATED
 * 
 * Save to: themes/mltteamplus/css/components/portfolio.css
 * 
 * Fixes:
 * - Hero image display
 * - Gallery grid with Drupal field markup
 * - Full width page layout
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --ov-charcoal: #3A4545;
  --ov-charcoal-dark: #2D3838;
  --ov-charcoal-darker: #1E2828;
  --ov-charcoal-light: #475252;
  --ov-green: #70BE43;
  --ov-green-light: #84CB5A;
  --ov-green-dark: #5CA336;
  --ov-white: #FFFFFF;
  --ov-text-muted: rgba(255, 255, 255, 0.7);
}


/* ============================================
   FULL WIDTH PAGE OVERRIDES FOR PORTFOLIO
   ============================================ */

/* Hide sidebars on portfolio pages */
.page-node-type-portfolio .sidebar-first,
.page-node-type-portfolio .sidebar-second,
.page-node-type-portfolio aside.sidebar__section {
  display: none !important;
}

/* Make main content full width */
.page-node-type-portfolio .main-content__container > .row > section {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

/* Remove padding from main content area */
.page-node-type-portfolio .main-content {
  padding: 0;
}

.page-node-type-portfolio .main-content__container {
  padding: 0;
}

.page-node-type-portfolio .main-content__section {
  padding: 0;
  margin: 0;
}

/* Make container fluid/full width for portfolio */
.page-node-type-portfolio .main-content > .container {
  max-width: 100%;
  padding: 0;
}

/* Hide the default page title - we show it in the hero */
.page-node-type-portfolio .page-title,
.page-node-type-portfolio #page-title,
.page-node-type-portfolio .block-page-title-block {
  display: none;
}

/* ============================================
   FULL WIDTH FOR PORTFOLIO VIEW PAGE (/portfolio)
   ============================================ */

/* Target the portfolio listing page */
.path-portfolio .main-content,
.path-portfolio #main-content {
  padding: 0;
}

.path-portfolio .main-content > .container,
.path-portfolio .main-content__container {
  max-width: 100%;
  padding: 0;
}

.path-portfolio .main-content__container > .row {
  margin: 0;
}

.path-portfolio .main-content__container > .row > section {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.path-portfolio .main-content__section {
  padding: 0;
  margin: 0;
}


/* ============================================
   PORTFOLIO PAGE - GRID LAYOUT
   ============================================ */

/* View wrapper */
.view-portfolio {
  background: var(--ov-charcoal);
  min-height: 60vh;
  /* Grid and padding handled below */
}

/* ============================================
   PORTFOLIO PAGE HEADER (SEO Content)
   ============================================ */
.view-portfolio .view-header {
  grid-column: 1 / -1; /* Span full width */
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ov-portfolio-header h1 {
  font-family: var(--mt-hff);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--ov-white);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.ov-portfolio-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ov-text-muted);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .view-portfolio .view-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  
  .ov-portfolio-header h1 {
    font-size: 1.75rem;
  }
  
  .ov-portfolio-header p {
    font-size: 1rem;
  }
}

/* Page title - hide default one */
.page-portfolio .page-title,
.page-portfolio #page-title,
.page-portfolio .block-page-title-block {
  display: none;
}

/* Exposed filters - FULL WIDTH above the grid */
.view-portfolio > .view-filters,
.view-portfolio.ov-portfolio-grid > .view-filters {
  grid-column: 1 / -1; /* Span all columns */
  margin-bottom: 10px;
}

.view-portfolio .views-exposed-form {
  background: var(--ov-charcoal-dark);
  padding: 25px 30px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  width: 100%;
}

.view-portfolio .views-exposed-form .form--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  width: 100%;
}

.view-portfolio .views-exposed-form .form-item {
  flex: 1;
  min-width: 200px;
}

.view-portfolio .views-exposed-form .form-actions {
  flex-shrink: 0;
}

.view-portfolio .views-exposed-form label {
  color: var(--ov-white);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.view-portfolio .views-exposed-form select,
.view-portfolio .views-exposed-form input[type="text"] {
  background: var(--ov-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ov-white);
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
}

.view-portfolio .views-exposed-form select:focus,
.view-portfolio .views-exposed-form input[type="text"]:focus {
  border-color: var(--ov-green);
  outline: none;
}

.view-portfolio .views-exposed-form .form-submit {
  background: var(--ov-green);
  color: var(--ov-white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-portfolio .views-exposed-form .form-submit:hover {
  background: var(--ov-green-light);
  transform: translateY(-2px);
}

/* Portfolio View Container - Grid Layout */
.view-portfolio.ov-portfolio-grid,
.view-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 50px; /* Vertical AND horizontal padding */
}

/* Make view-content a nested grid that spans all columns */
.view-portfolio .view-content {
  grid-column: 1 / -1; /* Span full width */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* Reset for individual card items */
.view-portfolio .view-content .views-row {
  display: block;
}

@media (max-width: 767px) {
  .view-portfolio.ov-portfolio-grid,
  .view-portfolio {
    padding: 40px 15px;
  }
  
  .view-portfolio,
  .view-portfolio .view-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .view-portfolio .views-exposed-form .form--inline {
    flex-direction: column;
  }
  
  .view-portfolio .views-exposed-form .form-item {
    width: 100%;
  }
  
  .view-portfolio .views-exposed-form .form-actions {
    width: 100%;
  }
  
  .view-portfolio .views-exposed-form .form-submit {
    width: 100%;
  }
}


/* ============================================
   PORTFOLIO CARD (Teaser)
   ============================================ */
.ov-portfolio-card {
  background: var(--ov-charcoal-dark);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ov-portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(112, 190, 67, 0.3);
}

.ov-portfolio-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ov-portfolio-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Card Image */
.ov-portfolio-card-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ov-charcoal);
}

.ov-portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ov-portfolio-card:hover .ov-portfolio-card-image img {
  transform: scale(1.1);
}

/* Handle Drupal's field wrapper in card image */
.ov-portfolio-card-image .field,
.ov-portfolio-card-image .field__item {
  height: 100%;
}

/* Placeholder */
.ov-portfolio-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ov-charcoal);
}

.ov-portfolio-card-placeholder svg {
  width: 60px;
  height: 60px;
  color: rgba(255, 255, 255, 0.2);
}

/* Hover Overlay */
.ov-portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(30, 40, 40, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none; /* Allow clicks to pass through to the link */
}

.ov-portfolio-card:hover .ov-portfolio-card-overlay {
  opacity: 1;
}

.ov-portfolio-card-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ov-green);
  color: var(--ov-white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none; /* Allow clicks to pass through */
}

.ov-portfolio-card:hover .ov-portfolio-card-view {
  transform: translateY(0);
}

/* Card Content */
.ov-portfolio-card-content {
  padding: 25px;
}

.ov-portfolio-card-badge {
  display: inline-block;
  background: rgba(112, 190, 67, 0.15);
  color: var(--ov-green);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.ov-portfolio-card-title {
  font-family: var(--mt-hff);
  font-size: 1.375rem;
  color: var(--ov-white);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.ov-portfolio-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ov-text-muted);
  font-size: 0.9rem;
}

.ov-portfolio-card-location svg {
  flex-shrink: 0;
  color: var(--ov-green);
}


/* ============================================
   PORTFOLIO FULL PAGE
   ============================================ */
.ov-portfolio-full {
  background: var(--ov-charcoal);
}


/* ============================================
   HERO SECTION
   ============================================ */
.ov-portfolio-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--ov-charcoal-darker);
}

.ov-portfolio-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Handle Drupal's field wrapper for hero image */
.ov-portfolio-hero-bg .field,
.ov-portfolio-hero-bg .field__item,
.ov-portfolio-hero-bg .media,
.ov-portfolio-hero-bg .media--type-image,
.ov-portfolio-hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ov-portfolio-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ov-portfolio-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, 
    rgba(30, 40, 40, 1) 0%, 
    rgba(30, 40, 40, 0.8) 40%, 
    rgba(30, 40, 40, 0.4) 100%);
  z-index: 2;
}

.ov-portfolio-hero-content {
  position: relative;
  z-index: 3;
}

/* Breadcrumb */
.ov-portfolio-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.ov-portfolio-breadcrumb a {
  color: var(--ov-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ov-portfolio-breadcrumb a:hover {
  color: var(--ov-green);
}

.ov-portfolio-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.ov-portfolio-breadcrumb span:last-child {
  color: var(--ov-white);
}

/* Hero Badge */
.ov-portfolio-hero-badge {
  display: inline-block;
  background: var(--ov-green);
  color: var(--ov-white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Hero Title */
.ov-portfolio-hero-title {
  font-family: var(--mt-hff);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ov-white);
  margin: 0 0 20px 0;
  line-height: 1.1;
}

/* Hero Meta */
.ov-portfolio-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.ov-portfolio-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ov-text-muted);
  font-size: 1rem;
}

.ov-portfolio-meta-item svg {
  color: var(--ov-green);
}


/* ============================================
   PORTFOLIO CONTENT SECTION
   ============================================ */
.ov-portfolio-content {
  padding: 80px 0;
  background: var(--ov-charcoal);
}

/* Description */
.ov-portfolio-description {
  margin-bottom: 50px;
}

.ov-portfolio-description h2 {
  font-family: var(--mt-hff);
  font-size: 1.75rem;
  color: var(--ov-white);
  margin: 0 0 20px 0;
}

.ov-portfolio-description p {
  color: var(--ov-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Highlights */
.ov-portfolio-highlights {
  background: var(--ov-charcoal-dark);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
}

.ov-portfolio-highlights h3 {
  font-family: var(--mt-hff);
  font-size: 1.25rem;
  color: var(--ov-white);
  margin: 0 0 20px 0;
}

.ov-portfolio-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ov-portfolio-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ov-text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ov-portfolio-highlights li:last-child {
  border-bottom: none;
}

.ov-portfolio-highlights li svg {
  flex-shrink: 0;
  color: var(--ov-green);
  margin-top: 2px;
}

/* Testimonial */
.ov-portfolio-testimonial {
  background: linear-gradient(135deg, rgba(112, 190, 67, 0.1) 0%, rgba(112, 190, 67, 0.05) 100%);
  border-left: 4px solid var(--ov-green);
  border-radius: 0 16px 16px 0;
  padding: 35px;
  position: relative;
}

.ov-portfolio-testimonial .ov-quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  color: rgba(112, 190, 67, 0.3);
}

.ov-portfolio-testimonial blockquote {
  color: var(--ov-white);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 15px 0;
}

.ov-portfolio-testimonial cite {
  color: var(--ov-green);
  font-style: normal;
  font-weight: 600;
}


/* ============================================
   SIDEBAR
   ============================================ */
.ov-portfolio-sidebar {
  position: sticky;
  top: 100px;
}

/* Info Card */
.ov-portfolio-info-card {
  background: var(--ov-charcoal-dark);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ov-portfolio-info-card h4 {
  font-family: var(--mt-hff);
  font-size: 1.125rem;
  color: var(--ov-white);
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ov-portfolio-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ov-portfolio-info-card li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ov-portfolio-info-card li:last-child {
  border-bottom: none;
}

.ov-portfolio-info-card .label {
  color: var(--ov-text-muted);
  font-size: 0.9rem;
}

.ov-portfolio-info-card .value {
  color: var(--ov-white);
  font-weight: 600;
}

/* CTA Card */
.ov-portfolio-cta-card {
  background: linear-gradient(135deg, var(--ov-green) 0%, var(--ov-green-dark) 100%);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
}

.ov-portfolio-cta-card h4 {
  font-family: var(--mt-hff);
  font-size: 1.375rem;
  color: var(--ov-white);
  margin: 0 0 10px 0;
}

.ov-portfolio-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 25px 0;
  line-height: 1.6;
}

.ov-portfolio-cta-card .ov-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.ov-portfolio-cta-card .ov-btn:last-child {
  margin-bottom: 0;
}

.ov-portfolio-cta-card .ov-btn-primary {
  background: var(--ov-white);
  color: var(--ov-green);
}

.ov-portfolio-cta-card .ov-btn-primary:hover {
  background: var(--ov-charcoal);
  color: var(--ov-white);
}

.ov-portfolio-cta-card .ov-btn-outline {
  background: transparent;
  color: var(--ov-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.ov-portfolio-cta-card .ov-btn-outline:hover {
  background: var(--ov-white);
  color: var(--ov-green);
  border-color: var(--ov-white);
}


/* ============================================
   GALLERY SECTION - FIXED FOR DRUPAL MARKUP
   ============================================ */
.ov-portfolio-gallery-section {
  padding: 80px 0;
  background: var(--ov-charcoal-dark);
}

.ov-portfolio-gallery-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mt-hff);
  font-size: 1.75rem;
  color: var(--ov-white);
  margin: 0 0 40px 0;
}

.ov-portfolio-gallery-title svg {
  color: var(--ov-green);
}

.ov-gallery-count {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ov-text-muted);
  margin-left: auto;
}

/* Gallery Grid - handles Drupal field markup */
.ov-portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* Handle Drupal's field wrapper - make field items display in grid */
.ov-portfolio-gallery > .field {
  display: contents;
}

.ov-portfolio-gallery .field__items {
  display: contents;
}

.ov-portfolio-gallery .field__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* Handle media entity wrapper */
.ov-portfolio-gallery .field__item .media,
.ov-portfolio-gallery .field__item .media--type-image {
  width: 100%;
  height: 100%;
}

.ov-portfolio-gallery .field__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ov-portfolio-gallery .field__item:hover img {
  transform: scale(1.1);
}

/* If using colorbox or lightbox links */
.ov-portfolio-gallery .field__item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hover overlay for gallery items */
.ov-portfolio-gallery .field__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 40, 40, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ov-portfolio-gallery .field__item:hover::after {
  opacity: 1;
}


/* ============================================
   BACK LINK
   ============================================ */
.ov-portfolio-back {
  padding: 40px 0;
  background: var(--ov-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ov-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ov-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ov-back-link:hover {
  color: var(--ov-green);
  gap: 15px;
}


/* ============================================
   PAGER
   ============================================ */
.view-portfolio .pager {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.view-portfolio .pager__item a,
.view-portfolio .pager__item.is-active span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ov-charcoal-dark);
  color: var(--ov-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-portfolio .pager__item a:hover {
  background: var(--ov-green);
  color: var(--ov-white);
  border-color: var(--ov-green);
}

.view-portfolio .pager__item.is-active span {
  background: var(--ov-green);
  color: var(--ov-white);
  border-color: var(--ov-green);
}


/* ============================================
   LOADING STATE
   ============================================ */
.view-portfolio.is-loading {
  position: relative;
  min-height: 300px;
}

.view-portfolio.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border: 4px solid rgba(112, 190, 67, 0.2);
  border-top-color: var(--ov-green);
  border-radius: 50%;
  animation: ov-spin 0.8s linear infinite;
  z-index: 100;
}

.view-portfolio.is-loading .view-content {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes ov-spin {
  to { transform: rotate(360deg); }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .ov-portfolio-content .row {
    flex-direction: column;
  }
  
  .ov-portfolio-content .col-lg-7,
  .ov-portfolio-content .col-lg-4 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  
  .ov-portfolio-content .offset-lg-1 {
    margin-left: 0;
  }
  
  .ov-portfolio-sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .ov-portfolio-hero {
    min-height: 40vh;
    padding: 60px 0 40px;
  }
  
  .ov-portfolio-hero-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .ov-portfolio-content {
    padding: 50px 0;
  }
  
  .ov-portfolio-gallery-section {
    padding: 50px 0;
  }
  
  .ov-portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .view-portfolio .views-exposed-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  .view-portfolio .views-exposed-form select {
    width: 100%;
  }
}


/* ============================================
   GLIGHTBOX / COLORBOX CUSTOMIZATION
   ============================================ */
.glightbox-clean .gslide-description {
  background: var(--ov-charcoal);
}

.glightbox-clean .gslide-title {
  color: var(--ov-white);
  font-family: var(--mt-hff);
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: var(--ov-green);
}

.glightbox-clean .gclose {
  background: var(--ov-charcoal);
}

/* Colorbox overrides if using that module */
#cboxContent {
  background: var(--ov-charcoal);
}

#cboxTitle {
  color: var(--ov-white);
}