/* Hero Card Styles */
.hp-hero-card {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

/* Imagen circular a la derecha */
.hp-hero-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    z-index: 0;
}

.hp-hero-overlay {
    display: none;
}

.hp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.hp-hero-title {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1;
}

.hp-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hp-hero-location,
.hp-hero-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    line-height: 1;
	font-family: Roboto;
}

.hp-hero-location i,
.hp-hero-date i {
    width: 20px;
    height: 20px;
    color: #666666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-hero-location span,
.hp-hero-date span {
    line-height: 1;
    display: flex;
    align-items: center;
}

.hp-hero-button {
    display: inline-block;
    padding: 10px 60px;
    background-color: #FFF200;
    color: #000;
    font-size: 1.2vw;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hp-hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #000;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hp-hero-card {
        min-height: 600px;
        padding: 0;
        border-radius: 20px;
        flex-direction: column;
        background-image: var(--hero-image) !important;
        background-size: cover;
        background-position: top center;
    }
    
    .hp-hero-card::before {
        display: none;
    }
    
    .hp-hero-overlay {
        display: block;
        background: linear-gradient(
            to bottom, 
            rgba(255, 255, 255, 0) 0%, 
            rgba(255, 255, 255, 0) 45%, 
            rgba(255, 255, 255, 1) 50%, 
            rgba(255, 255, 255, 1) 100%
        );
    }
    
    .hp-hero-content {
        margin-top: auto;
        padding: 30px 25px 40px 25px;
        width: 100%;
        max-width: 100%;
        background-color: #ffffff;
    }
    
    .hp-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hp-hero-meta {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .hp-hero-location,
    .hp-hero-date {
        font-size: 14px;
    }
    
    .hp-hero-button {
        padding: 15px 40px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hp-hero-card {
        min-height: 550px;
        border-radius: 15px;
    }
    
    .hp-hero-content {
        padding: 25px 20px 35px 20px;
    }
    
    .hp-hero-title {
        font-size: 26px;
    }
    
    .hp-hero-meta {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .hp-hero-location,
    .hp-hero-date {
        font-size: 13px;
    }
    
    .hp-hero-button {
        padding: 14px 30px;
        font-size: 13px;
    }
}