/* Workshop Card Widget Styles */
.cww-card {
    display: flex;
    flex-direction: row;
    background-color: #fbf8f1;
    border-radius: 12px;
    padding: 24px;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cww-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.cww-date-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2b3a4a;
    color: #fbf8f1;
    border-radius: 8px;
    padding: 30px 20px;
    min-width: 140px;
    text-align: center;
}

.cww-month {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.cww-day {
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 15px;
}

.cww-subtext {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cww-past {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cww-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cww-header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cww-top-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c7b95;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cww-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background-color: #d4af371f; /* Light gold background */
    color: #d4af37; /* Gold text */
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cww-title {
    font-size: 24px;
    font-weight: 700;
    color: #2b3a4a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cww-desc-wrapper {
    position: relative;
    margin: 0 0 25px 0;
}

.cww-desc-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cww-desc-content.expanded {
    -webkit-line-clamp: unset;
}

.cww-desc {
    font-size: 15px;
    color: #6c7b95;
    margin: 0;
    line-height: 1.6;
}

.cww-read-more-btn {
    display: inline-block;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cww-read-more-btn:hover {
    text-decoration: underline;
}

.cww-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cww-buttons {
    display: flex;
    gap: 12px;
}

.cww-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #2b3a4a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cww-btn:hover,
.cww-card:hover .cww-btn {
    background-color: #d4af371f; /* Custom transparent gold hover */
    color: #ffffff;
    border-color: #d4af37;
    transform: translateY(-2px);
}

.cww-btn-outline {
    background-color: transparent;
    color: #2b3a4a;
    border: 1px solid #2b3a4a;
}

.cww-meta {
    font-size: 14px;
    color: #6c7b95;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cww-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .cww-date-box {
        padding: 20px;
        min-width: 100%;
        min-height: auto;
    }

    .cww-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
