/* Article Cards for deed type pages */
.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.article-card .card-img-top-wrapper {
    height: 180px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.article-card .card-img-top {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .card-img-top {
    transform: scale(1.05);
}

.article-card .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.article-card .btn {
    position: relative;
    z-index: 2;
}

/* State list navigation - NO FRAME, NO SCROLL, JUST LINKS */
.state-list {
    /* No styling - just a container for the links */
}

.state-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #212529;
    transition: background-color 0.2s, padding-left 0.2s;
}

.state-list a:hover {
    background-color: #f8f9fa;
    padding-left: 1rem;
    color: #0d6efd;
}

/* Force state list to show ALL states without scrolling */
.state-list {
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
    height: auto !important;
}

/* Make the sticky card scroll with page after state list gets long */
.sticky-top {
    position: static !important; /* Or remove sticky-top class entirely */
}

/* Benefit Cards */
.benefit-card {
    transition: transform 0.2s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

/* Deed content sections */
.deed-content-section h2 {
    color: #212529;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Hero Section */
.deed-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 0.5rem;
}

/* Accordion Styles for State Forms */
.accordion-button {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.accordion-body {
    padding: 0.75rem;
}

.accordion-body a {
    display: inline-block;
    margin: 0.25rem;
}

/* Make accordion more compact and clean */
.accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

/* Process Visual */
.process-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-step {
    position: relative;
}

/* Deed Type Cards */
.deed-type-card {
    transition: transform 0.2s;
}

.deed-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* Sample Form Image */
.sample-form-preview img {
    border: 2px solid #dee2e6;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .process-visual .col {
        margin-bottom: 1rem;
    }
    .deed-comparison-visual .col-md-3 {
        margin-bottom: 1rem;
    }
}