/* Inter loaded via Google Fonts CDN */

:root {
    --pl-dark: #0F172A;
    --pl-mid: #1E293B;
    --pl-light: #334155;
    --pl-accent: #3B82F6;
    --pl-accent-light: #60A5FA;
    --pl-text: #F8FAFC;
    --pl-muted: #94A3B8;
    --pl-border: #1E293B;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0F172A;
    color: #F8FAFC;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #3B82F6;
    text-decoration: none;
}

a:hover {
    color: #60A5FA;
}

.pl-navbar {
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid #1E293B;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.pl-navbar .navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: #F8FAFC;
    letter-spacing: -0.5px;
}

.pl-navbar .navbar-brand span {
    color: #3B82F6;
}

.pl-navbar .nav-link {
    color: #94A3B8;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    transition: color 0.2s;
}

.pl-navbar .nav-link:hover {
    color: #F8FAFC;
}

.pl-navbar .btn-nav-cta {
    background-color: #3B82F6;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.2s;
}

.pl-navbar .btn-nav-cta:hover {
    background-color: #2563EB;
    color: #fff;
}

.pl-hero {
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.85)), url('../images/index-01.jpg');
    background-size: cover;
    background-position: center;
    background-color: #0F172A;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pl-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pl-hero .badge-pill {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pl-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #F8FAFC;
    max-width: 720px;
    margin: 0 auto 20px;
}

.pl-hero h1 span {
    color: #3B82F6;
}

.pl-hero .subtitle {
    font-size: 18px;
    color: #94A3B8;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.pl-hero .hero-cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-pl {
    background-color: #3B82F6;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    display: inline-block;
}

.btn-primary-pl:hover {
    background-color: #2563EB;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-pl {
    background-color: transparent;
    color: #94A3B8;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    border: 1px solid #334155;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline-pl:hover {
    border-color: #64748B;
    color: #F8FAFC;
    background-color: rgba(255,255,255,0.05);
}

.pl-code-block {
    background-color: #0D1117;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 28px 32px;
    text-align: left;
    margin: 48px auto 0;
    max-width: 680px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.8;
}

.pl-code-block .code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.pl-code-block .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.pl-code-block .dot-red { background-color: #FF5F57; }
.pl-code-block .dot-yellow { background-color: #FEBC2E; }
.pl-code-block .dot-green { background-color: #28C840; }

.pl-code-block .code-label {
    font-size: 11px;
    color: #475569;
    margin-left: auto;
    font-family: -apple-system, sans-serif;
}

.code-line { display: block; }
.code-comment { color: #475569; }
.code-keyword { color: #7C3AED; }
.code-string { color: #10B981; }
.code-fn { color: #3B82F6; }
.code-obj { color: #F59E0B; }
.code-num { color: #F97316; }
.code-plain { color: #CBD5E1; }

.pl-trust-bar {
    background-color: #0B1120;
    border-top: 1px solid #1E293B;
    border-bottom: 1px solid #1E293B;
    padding: 20px 0;
}

.pl-trust-bar .trust-label {
    font-size: 12px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 28px;
    white-space: nowrap;
}

.pl-trust-bar .trust-stat {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
    padding: 0 20px;
    border-right: 1px solid #1E293B;
}

.pl-trust-bar .trust-stat:last-child {
    border-right: none;
}

.pl-trust-bar .trust-stat strong {
    color: #94A3B8;
}

.section-dark {
    background-color: #0F172A;
    padding: 80px 0;
}

.section-darker {
    background-color: #080D18;
    padding: 80px 0;
}

.section-mid {
    background-color: #111827;
    padding: 80px 0;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #F8FAFC;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: #94A3B8;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
}

.pl-steps-row {
    display: flex;
    gap: 0;
    position: relative;
    margin-top: 48px;
}

.pl-step {
    flex: 1;
    padding: 32px;
    position: relative;
}

.pl-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1px;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #1E293B, transparent);
}

.pl-step:last-child::after { display: none; }

/* .pl-step .step-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
    margin-bottom: 12px;
} */

.pl-step .step-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pl-step .step-icon i {
    color: #3B82F6;
    font-size: 18px;
}

.pl-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 10px;
}

.pl-step p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.pl-feature-card {
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    transition: border-color 0.2s, background-color 0.2s;
}

.pl-feature-card:hover {
    border-color: #334155;
    background-color: #141C2E;
}

.pl-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pl-feature-card .feature-icon i {
    color: #3B82F6;
    font-size: 20px;
}

.pl-feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 10px;
}

.pl-feature-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.pl-metrics-bar {
    background: linear-gradient(135deg, #0B1120 0%, #0F172A 100%);
    border-top: 1px solid #1E293B;
    border-bottom: 1px solid #1E293B;
    padding: 48px 0;
}

.pl-metric {
    text-align: center;
    padding: 20px 32px;
    border-right: 1px solid #1E293B;
}

.pl-metric:last-child {
    border-right: none;
}

.pl-metric .metric-value {
    font-size: 42px;
    font-weight: 800;
    color: #F8FAFC;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.pl-metric .metric-value span {
    color: #3B82F6;
}

.pl-metric .metric-label {
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
}

.pl-compliance-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 36px;
}

.pl-compliance-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 8px;
    padding: 12px 20px;
}

.pl-compliance-badge i {
    color: #10B981;
    font-size: 16px;
}

.pl-compliance-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
}

.pl-pricing-card {
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.2s;
}

.pl-pricing-card.featured {
    background-color: #162033;
    border-color: #3B82F6;
    position: relative;
}

.pl-pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3B82F6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pl-pricing-card:hover {
    border-color: #334155;
}

.pl-pricing-card .plan-name {
    font-size: 13px;
    font-weight: 600;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pl-pricing-card .plan-price {
    font-size: 44px;
    font-weight: 800;
    color: #F8FAFC;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.pl-pricing-card .plan-price sup {
    font-size: 22px;
    font-weight: 700;
    vertical-align: super;
}

.pl-pricing-card .plan-desc {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pl-pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.pl-pricing-card .plan-features li {
    font-size: 14px;
    color: #94A3B8;
    padding: 8px 0;
    border-bottom: 1px solid #1E293B;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pl-pricing-card .plan-features li:last-child {
    border-bottom: none;
}

.pl-pricing-card .plan-features li i {
    color: #10B981;
    font-size: 13px;
    flex-shrink: 0;
}

.pl-pricing-card .btn-plan {
    background-color: #3B82F6;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    display: block;
    margin-top: auto;
    transition: background-color 0.2s;
}

.pl-pricing-card .btn-plan:hover {
    background-color: #2563EB;
    color: #fff;
}

.pl-pricing-card.featured .btn-plan {
    background-color: #3B82F6;
}

.pl-pricing-card .btn-plan-outline {
    background-color: transparent;
    color: #94A3B8;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #334155;
    cursor: pointer;
    text-align: center;
    display: block;
    margin-top: auto;
    transition: all 0.2s;
}

.pl-pricing-card .btn-plan-outline:hover {
    border-color: #64748B;
    color: #F8FAFC;
}

.pl-team-card {
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

.pl-team-card .team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: #1E293B;
}

.pl-team-card .team-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: #1E293B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 14px;
}

.pl-team-card .team-info {
    padding: 20px;
}

.pl-team-card .team-name {
    font-size: 16px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 4px;
}

.pl-team-card .team-title {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
}

.pl-team-card .team-bio {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.pl-blog-card {
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.2s;
}

.pl-blog-card:hover {
    border-color: #334155;
}

.pl-blog-card .blog-img-placeholder {
    width: 100%;
    height: 200px;
    background-color: #1E293B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 13px;
}

.pl-blog-card .blog-body {
    padding: 24px;
}

.pl-blog-card .blog-tag {
    font-size: 11px;
    font-weight: 600;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pl-blog-card .blog-title {
    font-size: 17px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pl-blog-card .blog-excerpt {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pl-blog-card .blog-meta {
    font-size: 12px;
    color: #475569;
}

.pl-cta-section {
    background: linear-gradient(135deg, #0F172A 0%, #162033 50%, #0F172A 100%);
    border-top: 1px solid #1E293B;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pl-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pl-cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: #F8FAFC;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.pl-cta-section p {
    font-size: 17px;
    color: #94A3B8;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.pl-footer {
    background-color: #080D18;
    border-top: 1px solid #1E293B;
    padding: 60px 0 28px;
}

.pl-footer .footer-brand {
    font-size: 22px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 12px;
}

.pl-footer .footer-brand span {
    color: #3B82F6;
}

.pl-footer .footer-tagline {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    max-width: 260px;
    margin-bottom: 20px;
}

.pl-footer .footer-col-title {
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.pl-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl-footer ul li {
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
}

.pl-footer ul li a {
    color: #64748B;
    font-size: 14px;
    transition: color 0.2s;
}

.pl-footer ul li a:hover {
    color: #94A3B8;
}

.pl-footer .footer-bottom {
    border-top: 1px solid #111827;
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pl-footer .footer-bottom p {
    font-size: 13px;
    color: #334155;
    margin: 0;
}

.pl-footer .footer-bottom a {
    color: #475569;
    font-size: 13px;
}

.pl-contact-form {
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 16px;
    padding: 40px;
}

.pl-form-group {
    margin-bottom: 20px;
}

.pl-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    display: block;
    margin-bottom: 8px;
}

.pl-form-group input,
.pl-form-group select,
.pl-form-group textarea {
    width: 100%;
    background-color: #0F172A;
    border: 1px solid #1E293B;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #F8FAFC;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.pl-form-group input:focus,
.pl-form-group select:focus,
.pl-form-group textarea:focus {
    border-color: #3B82F6;
}

.pl-form-group input::placeholder,
.pl-form-group textarea::placeholder {
    color: #334155;
}

.pl-contact-info-card {
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.pl-contact-info-card .ci-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pl-contact-info-card .ci-icon i {
    color: #3B82F6;
    font-size: 16px;
}

.pl-contact-info-card .ci-label {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.pl-contact-info-card .ci-value {
    font-size: 15px;
    color: #94A3B8;
}

.pl-contact-info-card .ci-value a {
    color: #94A3B8;
}

.page-hero {
    background-color: #0B1120;
    padding: 72px 0 60px;
    border-bottom: 1px solid #1E293B;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #F8FAFC;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 17px;
    color: #64748B;
    max-width: 520px;
    line-height: 1.7;
}

.about-stat {
    text-align: center;
    padding: 28px;
    border-right: 1px solid #1E293B;
}

.about-stat:last-child { border-right: none; }

.about-stat .stat-value {
    font-size: 38px;
    font-weight: 800;
    color: #F8FAFC;
    letter-spacing: -0.8px;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat .stat-value span { color: #3B82F6; }

.about-stat .stat-label {
    font-size: 13px;
    color: #475569;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #F8FAFC;
    margin-bottom: 8px;
}

.legal-content .legal-date {
    font-size: 13px;
    color: #475569;
    margin-bottom: 40px;
    display: block;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #E2E8F0;
    margin-top: 40px;
    margin-bottom: 14px;
}

.legal-content p, .legal-content li {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content a {
    color: #60A5FA;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111827;
    border-top: 1px solid #1E293B;
    padding: 16px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
    flex: 1;
    min-width: 260px;
}

.cookie-banner a {
    color: #60A5FA;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn-cookie-accept {
    background-color: #3B82F6;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.cookie-banner .btn-cookie-reject {
    background-color: transparent;
    color: #64748B;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    border: 1px solid #334155;
    cursor: pointer;
}

.solutions-card {
    background-color: #111827;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
}

.solutions-card .sol-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solutions-card .sol-icon i {
    color: #3B82F6;
    font-size: 22px;
}

.solutions-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 12px;
}

.solutions-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .pl-hero h1 { font-size: 36px; }
    .section-title { font-size: 28px; }
    .pl-steps-row { flex-direction: column; }
    .pl-metric { border-right: none; border-bottom: 1px solid #1E293B; }
    .pl-metric:last-child { border-bottom: none; }
    .about-stat { border-right: none; border-bottom: 1px solid #1E293B; }
    .about-stat:last-child { border-bottom: none; }
}

/* === Card Uniformity Fix (auto-generated) === */

.accordion-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-body > a:last-child,
.blog-body > p:last-child + a {
  margin-top: auto;
}

.accordion-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.blog-body > p {
  flex: 1;
}

.blog-body > a:last-child,
.blog-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.read-more,
a[class*="read-more"],
a[class*="readmore"] {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.blog-body > :last-child {
  margin-top: auto;
}

.pl-blog-card > :last-child {
  margin-top: auto;
}

.pl-team-card > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
