.uc-wrapper-a8ce5fec {
    background-color: #0e0e11;
    border-radius: 8px;
    padding: 24px;
    font-family: sans-serif;
    border: 1px solid #222;
}

.uc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.uc-header-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.uc-view-all {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.uc-items-list {
    display: flex;
    flex-direction: column;
}

.uc-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #222;
}

.uc-item:last-child {
    border-bottom: none;
    margin-bottom: 10px;
}

.uc-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 4px;
    padding: 8px;
    min-width: 50px;
    margin-right: 16px;
}

.uc-month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.uc-day {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-top: 2px;
}

.uc-cover {
    width: 60px;
    height: 90px;
    flex-shrink: 0;
    margin-right: 16px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #1a1a20;
}

/* Cover image and title now link to the product page (see widget-upcoming-comics.php).
   This keeps them looking exactly as before instead of showing default blue/underlined link styling. */
.uc-cover a,
.uc-item-title a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.uc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uc-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.uc-item-title {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.uc-publisher {
    font-size: 12px;
    color: #888;
}

.uc-price {
    font-size: 14px;
    font-weight: 700;
    margin-left: 16px;
}

.uc-footer {
    margin-top: 10px;
}

.uc-footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px;
    border: 1px solid;
    border-radius: 4px;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 8px;
}

.uc-footer-btn:hover {
    background-color: rgba(245, 166, 35, 0.1);
}