/**
 * Text Showcase Widget Styles
 */

/* Container */
.text-showcase {
    background-color: #f8e2b0;
    width: 100%;
    padding: 60px;
    box-sizing: border-box;
}

.text-showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.text-showcase-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin: 0 0 40px 0;
}

/* Class Item */
.text-showcase-class {
    margin-bottom: 60px;
}

.text-showcase-class:last-child {
    margin-bottom: 0;
}

/* Class Row (Desktop Layout) */
.class-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.class-content {
    flex: 1;
    padding-right: 30px;
}

/* Class Title */
.class-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin: 0 0 20px 0;
}

/* Class Description */
.class-description {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

/* Button */
.class-button-container {
    text-align: right;
}

.class-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.class-button:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .text-showcase {
        padding: 40px 20px;
    }
    
    .text-showcase-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .class-row {
        flex-direction: column;
    }
    
    .class-content {
        padding-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .class-button-container {
        text-align: center;
        width: 100%;
    }
    
    .class-button {
        width: 100%;
    }
    
    .class-title {
        font-size: 24px;
    }
} 