/* Core Concepts Styles - Manually compiled from ideas.sass */

.core-concepts-overview {
  margin-top: 50px;
}

@media screen and (max-width: 600px) {
  .core-concepts-overview {
    margin-top: 30px;
  }
}

.core-concepts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1024px) {
  .core-concepts-grid {
    gap: 40px;
  }
}

@media screen and (max-width: 600px) {
  .core-concepts-grid {
    flex-direction: column;
    gap: 50px;
  }
}

.core-concept-item {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .core-concept-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
  }
}

@media screen and (max-width: 600px) {
  .core-concept-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.core-concept-image {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .core-concept-image {
    margin-bottom: 20px;
  }
}

.core-concept-image img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 300px;
  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .core-concept-image img {
    max-height: 250px;
  }
}

@media screen and (max-width: 600px) {
  .core-concept-image img {
    max-height: 200px;
  }
}

.core-concept-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.core-concept-info h3 {
  font-family: 'TiemposHeadline', Georgia, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.7em;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .core-concept-info h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
  }
}

.core-concept-description {
  font-size: 0.95em;
  line-height: 1.5em;
  margin-bottom: 25px;
  flex: 1;
}

@media screen and (max-width: 600px) {
  .core-concept-description {
    font-size: 0.9em;
    line-height: 1.4em;
    margin-bottom: 20px;
  }
}

.core-concept-downloads {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.core-concept-downloads .download.button {
  display: table;
  width: auto;
}

@media screen and (max-width: 600px) {
  .core-concept-downloads .download.button {
    width: 100%;
    text-align: center;
  }
}

/* Case Studies Overview - shares same styling */
.case-studies-overview {
  margin-top: 50px;
}

@media screen and (max-width: 600px) {
  .case-studies-overview {
    margin-top: 30px;
  }
}

