@charset "utf-8";

/* 猫 */
.cats{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto;
    max-width: 1600px;
}

.cat-card{
    width: 400px;
    height: 500px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: left;
    padding: 20px;
    background-color: #fff;
}

.cat-photo{
    width: 100%;
}

.cat-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.cat-name{
    font-size :20px;
    font-weight: bold;
}

.tag-img{
    height: 80px;
    object-fit: contain;
}

.cat-card p{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}


/* レスポンシブ対応スタート */
@media screen and (max-width:1024px) {
    /* 猫一覧 */
    .cats {
      gap: 15px;
      padding: 0 10px;
    }
  
    .cat-card {
      width: calc(50% - 15px); /* 2列固定（隙間分を引く） */
      height: auto;            /* 高さは自動に */
      padding: 10px;
    }
  
    .cat-photo {
      width: 100%;
      height: auto;
    }
  
    .cat-header {
      margin: 8px 0;
    }
  
    .cat-name {
      font-size: 15px;
    }
  
    .tag-img {
      height: 50px;
    }
  
    .cat-card p {
      font-size: 14px;
      line-height: 1.6;
    }
  }
  