/**
 * Hero Block Styles (BEM)
 * 
 * Block: hero-block
 * Elements: __avatar, __content, __name, __title, __actions, __button, __button-icon, __button-text
 * Modifiers: --primary, --secondary
 */

/* ===========================
   Block
   =========================== */

.hero-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    padding: 0;
}

/* ===========================
   Avatar Element
   =========================== */

.hero-block__avatar {
    flex: none;
    width: 203px;
    height: 203px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.hero-block__avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===========================
   Content Element
   =========================== */

.hero-block__content {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.hero-block__name {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--token-04c51a78-d555-4e2b-b21f-e8825eddad31, rgb(17, 24, 39));
    margin: 0;
    width: 100%;
    text-align: left;
}

.hero-block__title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--token-9561f064-1857-45bb-a7d2-94616472662d, rgb(102, 102, 102));
    margin: 0;
    width: 100%;
    text-align: left;
}

/* ===========================
   Actions Element
   =========================== */

.hero-block__actions {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: auto;
}

/* ===========================
   Button Element
   =========================== */

.hero-block__button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 34px;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    width: 100%;
    min-width: fit-content;
}

.hero-block__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Button Modifier: Primary */
.hero-block__button--primary {
    background-color: var(--token-04c51a78-d555-4e2b-b21f-e8825eddad31, rgb(17, 24, 39));
    border: none;
}

.hero-block__button--primary .hero-block__button-icon {
    fill: var(--token-1eb4f973-264c-475e-a56b-9f6445381121, rgb(255, 255, 255));
    color: var(--token-1eb4f973-264c-475e-a56b-9f6445381121, rgb(255, 255, 255));
}

.hero-block__button--primary .hero-block__button-text {
    color: var(--token-1eb4f973-264c-475e-a56b-9f6445381121, rgb(255, 255, 255));
}

/* Button Modifier: Secondary */
.hero-block__button--secondary {
    background-color: var(--token-1d141876-9a4f-4304-b279-72b3dfe4a352, rgba(17, 24, 39, 0.03));
    border: 1px solid var(--token-0345f9fa-e99b-43ef-9cc2-5b445c84d939, rgba(17, 24, 39, 0.05));
}

.hero-block__button--secondary .hero-block__button-icon {
    fill: var(--token-9561f064-1857-45bb-a7d2-94616472662d, rgb(102, 102, 102));
    color: var(--token-9561f064-1857-45bb-a7d2-94616472662d, rgb(102, 102, 102));
}

.hero-block__button--secondary .hero-block__button-text {
    color: var(--token-9561f064-1857-45bb-a7d2-94616472662d, rgb(102, 102, 102));
}

/* Button Icon */
.hero-block__button-icon {
    flex: none;
    width: 14px;
    height: 14px;
    display: block;
}

/* Button Text */
.hero-block__button-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2em;
    white-space: pre;
}

/* ===========================
   Responsive: Tablet
   =========================== */

@media (min-width: 810px) and (max-width: 1199px) {
    .hero-block {
        gap: 20px;
    }
    
    .hero-block__avatar {
        width: 150px;
        height: 150px;
    }
    
    .hero-block__name {
        font-size: 24px;
    }
    
    .hero-block__title {
        font-size: 16px;
    }
}

/* ===========================
   Responsive: Mobile
   =========================== */

@media (max-width: 809px) {
    .hero-block {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-block__avatar {
        width: 100px;
        height: 100px;
    }
    
    .hero-block__content {
        width: 100%;
        align-items: center;
    }
    
    .hero-block__name {
        font-size: 22px;
        text-align: center;
    }
    
    .hero-block__title {
        font-size: 15px;
        text-align: center;
    }
    
    .hero-block__actions {
        width: 100%;
        align-items: stretch;
    }
    
    .hero-block__button {
        width: 100%;
    }
    
    /* Hide actions on mobile if needed */
    .hero-block__actions.hidden-mobile {
        display: none;
    }
}