/**
 * Descubre Más Widget Styles
 * 
 * @package AMW_Widgets
 * @since 1.0.0
 */

.descubre-mas-container {
    display: inline-block;
}

.descubre-mas-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    gap: 8px;
    transition: all 0.3s ease;
}

.descubre-mas {
    width: 127px;
    position: relative;
    font-size: 19.35px;
    line-height: 30.96px;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    color: #000;
    text-align: left;
    display: inline-block;
    margin: 0;
    transition: color 0.3s ease;
}

.arrow-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.arrow-svg circle {
    stroke: currentColor;
    stroke-width: 1.11569;
    fill: none;
    transition: stroke 0.3s ease;
}

.arrow-svg path {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.arrow-svg {
    color: #000;
}

/* Hover States */
.descubre-mas-button:hover .descubre-mas {
    color: #cf2e26;
}

.descubre-mas-button:hover .arrow-svg {
    color: #cf2e26;
    transform: translateX(4px);
}

/* Focus States for Accessibility */
.descubre-mas-button:focus {
    outline: 2px solid #cf2e26;
    outline-offset: 2px;
    border-radius: 2px;
}

.descubre-mas-button:focus:not(:focus-visible) {
    outline: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .descubre-ms {
        width: auto;
        min-width: 100px;
        font-size: 16px;
        line-height: 24px;
    }
    
    .arrow-svg {
        width: 28px;
        height: 28px;
    }
}