@charset "utf-8";

.feature-page {
    color: #333;
    line-height: 1.85;
}

.feature-page a {
    color: #005bac;
    text-decoration: underline;
}

.feature-hero {
    margin: 0 0 28px;
    padding: 24px 24px 22px;
    background: #f5f8fb;
    border: 1px solid #d8e2ec;
}

.feature-kicker {
    margin: 0 0 6px;
    color: #55708a;
    font-size: 13px;
    font-weight: bold;
}

.feature-hero h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.35;
}

.feature-lead {
    margin: 0;
    max-width: 880px;
    font-size: 16px;
}

.feature-points,
.feature-choice {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.feature-points {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.feature-choice {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.feature-point,
.feature-choice a {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #d8e2ec;
}

.feature-point b {
    display: block;
    margin-bottom: 3px;
}

.feature-choice a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.feature-section {
    margin: 34px 0;
}

.feature-section h2 {
    margin: 0 0 16px;
    padding: 0 0 8px;
    border-bottom: 3px solid #f08a24;
    font-size: 24px;
    line-height: 1.35;
}

.feature-section h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.45;
}

.feature-image {
    margin: 18px 0;
}

.feature-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.feature-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid #d9d9d9;
}

.feature-image-grid figure {
    margin: 0;
}

.feature-image-grid img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d9d9d9;
}

.feature-image-grid figcaption {
    margin-top: 6px;
    color: #555;
    font-size: 13px;
}

.feature-note {
    margin: 18px 0 0;
    padding: 14px 16px;
    background: #fff8ed;
    border-left: 5px solid #f08a24;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid #d8e2ec;
    background: #fff;
}

.feature-card figure {
    margin: 0;
}

.feature-card img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d9d9d9;
}

.feature-card p {
    margin: 0 0 10px;
}

.feature-card ul,
.feature-section ul {
    margin: 0 0 12px;
    padding-left: 1.2em;
    list-style: disc;
}

.feature-card li,
.feature-section li {
    margin: 0 0 3px;
}

.feature-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.feature-links a {
    display: inline-block;
    padding: 7px 10px;
    border: 1px solid #005bac;
    background: #f6fbff;
    text-decoration: none;
    font-weight: bold;
}

.feature-related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.feature-related-links a {
    display: block;
    padding: 12px 14px;
    border: 1px solid #d8e2ec;
    background: #fff;
    text-decoration: none;
    font-weight: bold;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.feature-table th,
.feature-table td {
    padding: 11px 12px;
    border: 1px solid #d7d7d7;
    vertical-align: top;
}

.feature-table th {
    width: 26%;
    background: #f2f5f8;
    font-weight: bold;
}

.feature-table .feature-term-main {
    display: block;
    white-space: nowrap;
}

.feature-table .feature-term-sub {
    display: block;
    margin-top: 3px;
    color: #666;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.5;
}

.feature-table td ul {
    margin: 0;
    padding-left: 1.2em;
}

.feature-table td li {
    margin: 0 0 4px;
}

@media (max-width: 767px) {
    .feature-hero {
        padding: 18px 14px;
    }

    .feature-hero h1 {
        font-size: 24px;
    }

    .feature-points,
    .feature-choice,
    .feature-cards,
    .feature-related-links {
        grid-template-columns: 1fr;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-table th,
    .feature-table td {
        display: block;
        width: 100%;
    }
}
