@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');

.thsf-about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Urbanist', sans-serif;
}

.thsf-about-media {
    flex: 1 1 500px;
    position: relative;
}

.thsf-about-media img,
.thsf-about-media video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

.thsf-about-content {
    flex: 1 1 500px;
}

.thsf-small-title {
    color: #d32f2f; /* Red color */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thsf-main-title {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 0;
}

.thsf-text-content {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 0;
}

.thsf-text-content p {
    margin: 0 0 10px 0;
}

.thsf-text-content p:last-child {
    margin-bottom: 0;
}

.thsf-button {
    display: inline-block;
    background-color: #888; /* Grey background */
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px; /* Rounded pill shape */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thsf-button:hover {
    background-color: #666;
    color: #fff;
}

@media (max-width: 768px) {
    .thsf-about-container {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        padding: 15px;
    }

    .thsf-about-media,
    .thsf-about-content {
        flex: 0 0 auto;
        width: 100%;
        min-height: 0;
    }
    
    .thsf-small-title {
        margin-bottom: 6px;
        margin-top: 0;
        font-size: 13px;
    }
    
    .thsf-main-title {
        font-size: 22px;
        margin-bottom: 8px;
        margin-top: 0;
        line-height: 1.3;
    }
    
    .thsf-text-content {
        margin-bottom: 12px;
        margin-top: 0;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .thsf-text-content p {
        margin: 0 0 8px 0;
    }
    
    .thsf-about-media img,
    .thsf-about-media video {
        height: 280px;
    }
}
