.catalog-page{
    padding:120px 20px 80px;
}
.catalog-page .grid .card{
    opacity: 1 !important;
    transform: none !important;
}
.catalog-title{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:10px;
}

/* ⭐ 重點1：修正圖片基準 */
.catalog-title img{
    height:32px;
    width:auto;
    display:block;
}

/* ⭐ 重點2：把 h1 多餘空間拿掉 */
.catalog-title h1{
    margin:0;
    line-height:1.1;
}
/* container */
.wrap{
    max-width:1200px;
    margin:auto;
}

/* title */
h1{
    font-size:40px;
    margin-bottom:10px;
}

/* subtitle */
.subtitle{
    color:#ccc;
    margin-bottom:40px;
}

/* grid */
.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* card */
.card{
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,0,0,0.2);
    border-radius:16px;
    padding:30px;
    transition:0.3s;
}

/* hover */
.card:hover{
    border-color:#e1111a;
}

/* title */
.card h2{
    margin-top:0;
    font-size:22px;
}

/* text */
.card p{
    color:#ccc;
    line-height:1.6;
}

/* button */
.btn{
    display:inline-block;
    margin-top:15px;
    margin-right:10px;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

/* red */
.btn-main{
    background:#e1111a;
    color:white;
}

/* outline */
.btn-outline{
    border:1px solid #e1111a;
    color:#e1111a;
}

/* mobile */
@media(max-width:900px){
    .grid{
        grid-template-columns:1fr;
    }
}