/**
 * Component: Brand Description Styles
 */

 .tec-brand-description-wrap {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f3f5;
    position: relative;
}

.tec-brand-description-inner {
    overflow: hidden;
    position: relative;
    transition: height 0.4s ease-in-out;
    line-height: 1.8;
    color: #4a5568;
}

.tec-brand-description-inner h2, 
.tec-brand-description-inner h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tec-brand-description-inner p {
    margin-bottom: 1.5rem;
}

/* Gradient Fade for "Read More" state */
.tec-brand-description-inner.is-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

/* Toggle Buttons Styling */
.tec-brand-description-toggle {
    margin-top: 15px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.tec-brand-view-more, 
.tec-brand-view-less {
    background: #f8fafc;
    color: #3b82f6;
    border: 1px solid #e2e8f0;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tec-brand-view-more:hover, 
.tec-brand-view-less:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    transform: translateY(-1px);
}

.tec-brand-view-more::after {
    content: '↓';
    font-size: 1.1rem;
}

.tec-brand-view-less::after {
    content: '↑';
    font-size: 1.1rem;
}
