/* Calendar Style Date Block with Year */
.ci-post-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Item Wrapper */
.ci-item {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Date Box */
.ci-date-block {
    width: 150px;
    height: 120px;             /* Ensures equal box size */
    border: 2px solid #971f37;
    border-radius: 12px;
    background: #eaedef !important;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;             
    flex-direction: column;
    justify-content: space-between;   /* Equal spacing inside */
    overflow: hidden;                 /* Fix rounded corners */
}

/* Month */
.ci-mon {
    background: #971f37;
    color: #fff;
    font-weight: 600;
    padding: 6px 0;
    font-size: 16px;
    border-radius: 10px 10px 0 0;
}

/* Day */
.ci-day {
    font-size: 34px;
    line-height: 25px;
    font-weight: 700;
    padding-top:5px;
    color: #8F182E;
    flex-grow: 1;                   /* Makes the middle area balanced */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Year */
.ci-year {
    font-size: 18px;
    font-weight: 600;
    color: #971f37;
    padding: 6px 0 8px;
}

/* Title */
.ci-title a {
    text-decoration: none;
    color: #971f37;
    font-size: 1.3rem;
    font-weight: 400;
}

.ci-title a:hover {
    color: #971f37;
    text-decoration: underline;
}

/* Small date text */
.ci-date {
    font-size: 18px;
    color: #000;
}
