
.model_hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.model_hero .hero_img_desktop,
.model_hero .hero_img_mobile {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.model_hero .hero_img_desktop {
    height: 480px;
}

.model_hero .hero_img_mobile {
    display: none;
}

.model_hero .hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.35) 55%,
        transparent 100%
    );
    pointer-events: none;
}

.model_hero .hero_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 36px;
    color: #fff;
}

.model_hero .hero_name {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.model_hero .hero_like {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.model_hero .hero_like_btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
}

.model_hero .hero_like_btn:hover {
    background: rgba(232, 0, 44, 0.7);
    border-color: #e8002c;
    color: #fff;
    text-decoration: none;
}

.model_hero .hero_like_count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.model_hero .hero_cols {
    display: flex;
    gap: 0 40px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.model_hero .hero_col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.model_hero .hero_item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.model_hero .hero_item span {
    color: #fff;
    font-weight: 600;
}

.model_hero .hero_links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.model_hero .hero_links a {
    font-size: 13px;
    color: #fff;
    background: rgba(232, 0, 44, 0.75);
    padding: 5px 14px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.model_hero .hero_links a:hover {
    background: #e8002c;
    text-decoration: none;
}

@media screen and (max-width: 640px) {

    .model_hero .hero_img_desktop { display: none; }
    .model_hero .hero_img_mobile  { display: block; height: 520px; }

    .model_hero .hero_name        { font-size: 22px; }
    .model_hero .hero_content     { padding: 16px; }
    .model_hero .hero_cols        { gap: 0 16px; }
    .model_hero .hero_item        { font-size: 12px; }
    .model_hero .hero_like_btn    { font-size: 13px; padding: 6px 14px; }
}
