/* ============================================
   CONTENT PAGES - Location landing + Blog
   Shared styles for /software-development-indianapolis,
   /blog, and /blog/* article pages.
   ============================================ */

/* ---------- Shared prose section ---------- */
.content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-section.alt {
    background: var(--bg-light);
}

.content-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-narrow h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.content-narrow h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 0.75rem;
}

.content-narrow p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.content-narrow ul,
.content-narrow ol {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0 0 1.5rem 1.25rem;
}

.content-narrow li {
    margin-bottom: 0.6rem;
}

.content-narrow a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(113, 23, 242, 0.25);
    transition: var(--transition-fast);
}

.content-narrow a:hover {
    border-bottom-color: var(--primary-color);
}

.content-narrow blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ---------- Location page: service cards ---------- */
.loc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1120px;
    margin: 2.5rem auto 0;
    padding: 0 20px;
}

.loc-service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
}

.loc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(113, 23, 242, 0.2);
}

.loc-service-card .loc-service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.loc-service-card .loc-service-icon svg {
    color: var(--white);
    font-size: 1.4rem;
}

.loc-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.loc-service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

/* ---------- Service-area pills ---------- */
.area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.area-pill {
    background: var(--bg-light);
    border: 1px solid rgba(113, 23, 242, 0.15);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 2rem auto 0;
    padding: 0 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.6rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
}

/* ---------- Inline CTA band ---------- */
.local-cta {
    background: var(--gradient);
    border-radius: var(--radius-2xl);
    max-width: 1120px;
    margin: 3rem auto 0;
    padding: 3rem 2.5rem;
    text-align: center;
    color: var(--white);
}

.local-cta h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.local-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}

.local-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.local-cta .btn-white {
    background: var(--white);
    color: var(--primary-dark);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
}

.local-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.local-cta .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
}

.local-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ---------- Blog index ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(113, 23, 242, 0.2);
}

.blog-card-cat {
    display: inline-block;
    align-self: flex-start;
    background: rgba(113, 23, 242, 0.08);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-card-meta .read-more {
    margin-left: auto;
    color: var(--primary-color);
    font-weight: 700;
}

/* ---------- Blog article ---------- */
.article-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-cat {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.article-meta {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-body p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.08rem;
    margin-bottom: 1.35rem;
}

.article-body h2 {
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 2.75rem 0 1rem;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 0.75rem;
}

.article-body ul,
.article-body ol {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.08rem;
    margin: 0 0 1.5rem 1.5rem;
}

.article-body li {
    margin-bottom: 0.65rem;
    padding-left: 0.25rem;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-dark);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.7;
}

.article-body a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(113, 23, 242, 0.25);
    transition: var(--transition-fast);
}

.article-body a:hover {
    border-bottom-color: var(--primary-color);
}

.article-body p:first-of-type {
    font-size: 1.18rem;
    line-height: 1.75;
    color: var(--text-dark);
}

.article-back {
    max-width: 760px;
    margin: 2.5rem auto 0;
    padding: 0 20px;
}

.article-back a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.article-back a:hover {
    text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .content-section {
        padding: 3.5rem 0;
    }
    .local-cta {
        padding: 2.5rem 1.5rem;
    }
}

/* Inline SVG icons (replaced the legacy icon font). Size and color inherit
   from each icon's context; these are the shared defaults. */
.svg-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: -0.125em;
}
