.fg-intro-widget-card {
    --fg-intro-bg-opacity: 0.95;
    --fg-intro-border-color: #8fd3f4;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: rgba(255, 255, 255, var(--fg-intro-bg-opacity));
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 3px dashed var(--fg-intro-border-color);
    position: relative;
    margin-bottom: 20px;
}

.fg-intro-widget-card .fg-intro-paw-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    line-height: 140px;
    font-size: 140px;
    color: var(--fg-intro-border-color);
    opacity: 0.12;
    transform: rotate(20deg);
    pointer-events: none;
}

.fg-intro-widget-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.fg-intro-widget-card h2 .subtitle-line {
    font-size: 0.85em;
    font-weight: 600;
    color: #5a6c7d;
    opacity: 0.9;
}

.fg-intro-widget-card h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(to right, var(--fg-intro-border-color), #a8edea);
    margin: 5px auto 0;
    border-radius: 3px;
}

.fg-intro-widget-card p {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #555;
    position: relative;
    z-index: 1;
    text-align: justify;
    margin-bottom: 1em;
}

.fg-intro-widget-card p:last-child {
    margin-bottom: 0;
}

.dark-theme .fg-intro-widget-card {
    background: rgba(40, 40, 40, var(--fg-intro-bg-opacity));
    border-color: var(--fg-intro-border-color);
}

.dark-theme .fg-intro-widget-card h2 {
    color: #eee;
}

.dark-theme .fg-intro-widget-card p {
    color: #ccc;
}

@media (min-width: 769px) {
    .fg-intro-widget-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .fg-intro-widget-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 768px) {
    .fg-intro-widget-card {
        padding: 25px 20px;
    }

    .fg-intro-widget-card h2 {
        font-size: 1.5rem;
    }

    .fg-intro-widget-card p {
        font-size: 1.3rem;
        line-height: 1.7;
    }
}
