/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.job-card {
  height: 100%;
  min-height: 24rem;
}

@media (min-width: 1024px) {
  .job-card {
    min-height: 25.5rem;
    max-height: 25.5rem;
  }
}

.text-clamp-2,
.text-clamp-3,
.text-clamp-4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.text-clamp-2 {
  -webkit-line-clamp: 2;
}

.text-clamp-3 {
  -webkit-line-clamp: 3;
}

.text-clamp-4 {
  -webkit-line-clamp: 4;
}
