.tYuiIJyn {
    width: 100%;
}

.sjwh-app-block__inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sjwh-app-block__left {
    flex: 0 0 auto;
}

.sjwh-app-block__left img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.sjwh-app-block__right {
    flex: 1 1 300px;
    min-width: 0;
}

.sjwh-app-block__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: inherit;
}

.sjwh-app-block__metrics {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.sjwh-app-block__metrics li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.sjwh-app-block__metrics li span {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: inherit;
    line-height: 1.2;
}

.sjwh-app-block__metrics li span img {
    margin-left: 0.25rem;
    vertical-align: middle;
}

.sjwh-app-block__metrics li span svg {
    vertical-align: middle;
    color: currentColor;
}

.sjwh-app-block__metrics li small {
    font-size: 0.75rem;
    opacity: 0.7;
    color: inherit;
    line-height: 1.2;
}

.sjwh-app-block__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.sjwh-app-block__button {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.sjwh-app-block__button:hover {
    opacity: 0.8;
}

.sjwh-app-block__button:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.sjwh-app-block__button img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 767px) {
    .sjwh-app-block__inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .sjwh-app-block__left {
        width: 100%;
    }
    
    .sjwh-app-block__left img {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
    }
    
    .sjwh-app-block__right {
        flex: 1 1 100px;
    }
    
    .sjwh-app-block__metrics {
        gap: 1rem;
    }
    
    .sjwh-app-block__buttons {
        justify-content: center;
    }
}



