/* Main Content */
.index-content {
  max-width: 900px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 2rem;
  font-size: 1.1rem;
}

/* Cards Layout */
.index-cards-wrapper {
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem 0;
}

/* Cards */
.index-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1120px;
}
.index-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s;
	border: 1px solid #DEDEDE;
}
.index-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}

/* Card Image */
.index-card-img {
  height: 160px;
  background-color: #CCC;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #EEE;
}

/* Card Title */
.index-card-title {
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  text-align: center;
}

/* Mobile */
@media (max-width: 1080px) {
  .index-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    justify-items: center;
  }
  .index-card {
    width: 90%;
    margin: 0 auto;
  }
}
