/* ===============================
   Event List
================================*/

.ct-event-list{

    max-width:1200px;
    margin:70px auto;
    padding:0 20px;

}

.ct-event-list-header{

    margin-bottom:40px;
    text-align:center;

}

.ct-event-list-header h2{

    font-size:42px;
    color:#9c0000;
    font-family:"Cormorant Garamond",serif;
    margin-bottom:10px;

}

.ct-event-list-header p{

    color:#666;
    font-size:18px;

}

/* Card */

.ct-event-card{

    display:flex;
    align-items:center;
    gap:35px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    margin-bottom:25px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.ct-event-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

/* ===============================
   LEFT DATE
================================*/

.ct-event-date-box{

    width:120px;

    flex-shrink:0;

    text-align:center;

}

.ct-day{

    font-size:56px;

    font-family:"Cormorant Garamond",serif;

    color:#9c0000;

    line-height:1;

}

.ct-month{

    font-size:20px;

    color:#555;

    margin-top:10px;

}

.ct-year{

    font-size:16px;

    color:#999;

}

/* ===============================
   CENTER
================================*/

.ct-event-center{

    flex:1;

    display:flex;

    gap:25px;

    align-items:flex-start;

}

.ct-event-image{

    width:220px;

    height:160px;

    overflow:hidden;

    border-radius:16px;

    flex-shrink:0;

}

.ct-event-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.ct-event-card:hover .ct-event-image img{

    transform:scale(1.05);

}

.ct-event-content{

    flex:1;

}

.ct-event-title{

    margin:0 0 18px;

    font-size:34px;

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

}

.ct-event-title a{

    text-decoration:none;

    color:#3a2a1a;

}

.ct-event-title a:hover{

    color:#9c0000;

}

.ct-event-info{

    margin-bottom:10px;

    color:#555;

    font-size:16px;

    line-height:1.6;

}

.ct-event-info strong{

    color:#222;

}

/* ===============================
   RIGHT
================================*/

.ct-event-right{

    width:170px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:15px;

}

.share-btn,
.calendar-btn{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#FBF4E0;

    cursor:pointer;

    font-size:20px;

    transition:.3s;

}

.share-btn:hover,
.calendar-btn:hover{

    background:#9c0000;

    color:#fff;

}

.view-btn{

    width:160px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    border-radius:12px;

    background:#9c0000;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.view-btn:hover{

    background:#7b0000;

}

/* ===============================
   Tablet
================================*/

@media(max-width:1024px){

.ct-event-card{

    gap:20px;

    padding:25px;

}

.ct-event-image{

    width:170px;

    height:130px;

}

.ct-event-title{

    font-size:28px;

}

}
.ct-no-image{

    width:100%;
    height:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#FBF4E0;
    color:#9c0000;

    border-radius:16px;

    font-weight:600;

}

/* ===============================
   Mobile
================================*/

@media(max-width:768px){

.ct-event-card{

    flex-direction:column;

    align-items:flex-start;

}

.ct-event-date-box{

    width:100%;

    text-align:left;

}

.ct-event-center{

    flex-direction:column;

    width:100%;

}

.ct-event-image{

    width:100%;

    height:220px;

}

.ct-event-right{

    width:100%;

    flex-direction:row;

    justify-content:space-between;

    align-items:center;

}

.view-btn{

    flex:1;

    margin-left:15px;

}

}