/* LISTING */
.dxc-cal-wrap {
    max-width: 1200px;
    margin: auto;
    font-family: Arial, sans-serif;
}
.dxc-cal-front img {
    max-height: 288px;
    min-height: 288px;
    object-fit: cover;
}
.dxc-cal-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.dxc-cal-title {
    font-size: 28px;
    font-weight: 600;
}

.dxc-cal-tabs {
    display: flex;
    gap: 10px;
}

.dxc-cal-tab {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background: #eee;
    cursor: pointer;
}

.dxc-cal-tab.is-active {
    background: #6f2dbd;
    color: #fff;
}

.dxc-cal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(343px, 1fr));
    gap: 52px;
}

/* CARD */
.dxc-cal-card {
    perspective: 1000px;
}

.dxc-cal-card-inner {
    position: relative;
    height: 624px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.dxc-cal-card:hover .dxc-cal-card-inner {
    transform: rotateY(180deg);
}

.dxc-cal-front,
.dxc-cal-back {
    position: absolute;
    inset: 0;
    padding: 20px;
    border-radius: 14px;
    backface-visibility: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.dxc-cal-front img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.dxc-cal-back {
    background: #6f2dbd;
    color: #fff;
    transform: rotateY(180deg);
}

.dxc-cal-link,
.dxc-cal-btn {
    display: inline-block;
    margin-top: 15px;
    color: #6f2dbd;
    text-decoration: none;
}

/* DETAIL PAGE */
.dxc-detail-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
}

.dxc-detail-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
}

.dxc-detail-left img {
    width: 100%;
    border-radius: 10px;
}

.dxc-detail-title {
    font-size: 28px;
    color: #6f2dbd;
}

.dxc-btn-primary {
    background: #6f2dbd;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}
