/* =========================================
   ShivMarg - Learn More Button
   File: /css/learnmorebutton.css
   ========================================= */

.sm-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 18px;
    margin: 10px 0;

    background: linear-gradient(135deg, #8b1e1e, #b43a20);
    color: #ffffff !important;

    border: 1px solid #d49a3a;
    border-radius: 8px;

    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;

    text-decoration: none !important;

    box-shadow: 0 3px 10px rgba(107, 25, 25, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Hover */
.sm-learn-more:hover {
    background: linear-gradient(135deg, #a52b1f, #c94b25);

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(107, 25, 25, 0.25);

    color: #ffffff !important;
}

/* Arrow */
.sm-learn-arrow {
    font-size: 1.15rem;
    line-height: 1;

    transition: transform 0.2s ease;
}

/* Arrow movement on hover */
.sm-learn-more:hover .sm-learn-arrow {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 600px) {
    .sm-learn-more {
        padding: 9px 15px;
        font-size: 0.9rem;
    }
}

/* 
<a href="/modi-mandir-patna/"
   class="sm-learn-more"
   aria-label="मोदी मंदिर पटना के बारे में और जानें">
  <span>और जानें</span>
  <span class="sm-learn-arrow">→</span>
</a> 
<link rel="stylesheet" href="/css/learnmorebutton.css?v=1.0">
*/