/* パンフレットデザイン 固有スタイル */
.breadcrumb { max-width: 1200px; margin: 20px auto 0; padding: 0 4%; font-size: 0.85rem; color: #777; }
.breadcrumb a { color: var(--theme-accent); }

.design-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.design-card {
    background: #fff;
    border: 1px solid var(--border-color, #d7e3ef);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.design-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(83, 129, 177, 0.15);
    border-color: var(--theme-accent);
}
.design-badge {
    background-color: var(--problem-bar-bg);
    color: var(--theme-accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color, #d7e3ef);
}
.design-img-wrap {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 480 / 339;
    margin: 0 auto 25px;
    background-color: #f4f7f9;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e1e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
.design-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.design-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.design-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
    width: 100%;
}

@media (max-width: 768px) {
    .design-grid { grid-template-columns: 1fr; gap: 30px; }
}