/**
 * Nett Animated Text Link Styles
 */

/* Wrapper */
.nett-animated-text-link-wrapper {
    padding: 15px;
    max-width: 600px;
}

/* Text Content */
.nett-text-content {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

.nett-text-normal {
    display: inline;
}

/* Animated Link Base */
.nett-animated-link {
    position: relative;
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.nett-animated-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #f59e0b;
    border-radius: 3px;
    transition: width 0.4s ease, left 0.4s ease;
}

.nett-animated-link:hover {
    color: #f59e0b;
}

.nett-animated-link:hover::after {
    width: 100%;
    left: 0;
}

/* Animation: Expand from Center */
.nett-animate-center::after {
    left: 50%;
}

.nett-animate-center:hover::after {
    width: 100%;
    left: 0;
}

/* Animation: Expand from Left */
.nett-animate-left::after {
    left: 0;
}

.nett-animate-left:hover::after {
    width: 100%;
}

/* Animation: Expand from Right */
.nett-animate-right::after {
    left: auto;
    right: 0;
}

.nett-animate-right:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .nett-text-content {
        font-size: 14px;
        line-height: 1.6;
    }
}
