/*
 Theme override stylesheet
 This file is loaded after css/app.css and is not part of the build pipeline.
 Use it for direct CSS fixes that should deploy without running Tailwind/PostCSS.
*/

/* Stand out component */

.standout-counters {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
}

.standout-counter-card {
  flex: 1 1 0;
  min-height: 180px;
}

@media (max-width: 767px) {
  .standout-counters {
    flex-direction: column;
  }

  .standout-counter-card {
    width: 100%;
  }
}

/* Project gallery */

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    padding: 4rem 0;
}

.project-gallery-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-gallery-image img {
    width: 100%;
    height: 280px !important;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.project-gallery-title {
    margin: 1.5rem 0 0;
    color: #323130;
    font-family: "Museo Sans", sans-serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
}

.project-gallery-description {
    margin-top: 1.5rem;
    color: #323130;
    font-family: "Museo Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.project-gallery-footer {
    margin-top: auto;
    padding-top: 2rem;
}

.project-gallery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 9999px;
    background: #0698e7;
    color: #fff;
    font-family: "Museo Sans", sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    text-decoration: none;
    border: 0;
}

@media (max-width: 1023px) {
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-image img {
        height: 150px;
    }
}

