/* =================================
   Interview Archive & Single Styles
   ================================= */

/* Reset body margin for interview pages */
body.post-type-archive-interview .site-header,
body.single-interview .site-header {
    margin-bottom: 0;
}

body.post-type-archive-interview .site-header + *,
body.single-interview .site-header + * {
    margin-top: 0;
}

/* Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* インタビューページの.breadcrumb-wrapperスタイルを削除 */
/* common.cssの.breadcrumbクラスを使用 */

/* ===== Archive Styles ===== */
.interview-archive-main {
    background-color: #ffffff;
    margin-top: 0;
}

.interview-archive-header {
    background: linear-gradient(135deg, #FF6B35 0%, #F77737 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: -1px; /* グローバルメニューとの隙間を除去 */
    margin-bottom: 0;
}

.header-content .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header-content .page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Filter Section */
.interview-filter-section {
    background-color: #f8f9fa;
    padding: 24px 0;
    border-bottom: 2px solid #e9ecef;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-title {
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
}

.filter-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-select {
    padding: 10px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background-color: white;
    font-size: 14px;
    min-width: 160px;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Interview Grid */
.interview-grid-section {
    padding: 48px 0;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.interview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.interview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.interview-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.interview-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interview-card:hover .card-thumbnail {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(255,255,255,0.9);
    color: #495057;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
}

.interview-card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.prefecture-tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.publish-date {
    font-size: 12px;
    color: #6c757d;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #212529;
}

.company-info {
    margin-bottom: 16px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.company-name {
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
}

.representative {
    font-size: 14px;
    color: #6c757d;
}

.card-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.interview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* No Interviews State */
.no-interviews {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.no-interviews-icon {
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-interviews-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #495057;
}

/* ===== Single Interview Styles ===== */
.interview-single-main {
    padding: 32px 0 0;
}

.interview-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.interview-article {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.article-header {
    padding: 32px;
    border-bottom: 1px solid #e9ecef;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #6c757d;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #212529;
}

.article-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.category-tags {
    display: flex;
    gap: 8px;
}

.category-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

/* インタビュー対象者情報 */
.interviewee-info {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid #667eea;
}

.interviewee-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e9ecef;
}

.interviewee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interviewee-details {
    flex: 1;
}

.interviewee-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.interviewee-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.interviewee-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
}

/* 執筆者情報 */
.author-info {
    margin: 40px 0;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 3px solid #667eea;
}

.author-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    text-align: center;
}

.author-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.author-avatar,
.author-avatar-placeholder {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-placeholder {
    color: #6c757d;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
}

.article-thumbnail {
    margin-bottom: 32px;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    padding: 32px;
    line-height: 1.7;
    font-size: 16px;
}

.article-content h2,
.article-content h3 {
    margin: 32px 0 16px;
    color: #212529;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 16px;
}

/* WordPress自動装飾システム */

/* 太字要素 → 黄色マーカー */
.article-content strong,
.article-content b {
    background: linear-gradient(transparent 60%, #fff200 60%);
    font-weight: bold;
    padding: 0 2px;
}

/* 引用要素 → カスタムスタイル */
.article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #3b82f6;
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 4px;
    font-style: normal;
    color: #374151;
    position: relative;
}

.article-content blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #3b82f6;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
    font-family: Georgia, serif;
}

/* リスト要素 → カスタム矢印 */
.article-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.article-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content ul li::before {
    content: "▶";
    color: #3b82f6;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

/* 番号付きリスト → カスタムスタイル */
.article-content ol {
    counter-reset: custom-counter;
    padding-left: 0;
    list-style: none;
    margin: 1rem 0;
}

.article-content ol li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
}

.article-content ol li::before {
    content: counter(custom-counter);
    background: #3b82f6;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0.125rem;
    font-size: 0.75rem;
    font-weight: bold;
}

/* テーブル要素 → きれいなテーブル */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.article-content table th,
.article-content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.article-content table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-content table tbody tr:hover {
    background: #f9fafb;
}

.article-content table tbody tr:last-child td {
    border-bottom: none;
}

/* 画像キャプション */
.article-content .wp-caption {
    max-width: 100%;
    margin: 2rem 0;
    text-align: center;
}

.article-content .wp-caption img {
    margin-bottom: 0.5rem;
}

.article-content .wp-caption-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    padding: 0 1rem;
}

/* 動画埋め込みレスポンシブ対応 */
.article-content .wp-embed,
.article-content iframe {
    max-width: 100%;
    height: auto;
}

.article-content .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
}

.article-content .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 画像のスタイル */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* コード要素 */
.article-content code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: #3b82f6;
}

.article-content pre {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: #333;
}

/* Sidebar */
.interview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.company-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.company-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.company-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-value {
    font-weight: 500;
    color: #212529;
}

.phone-link,
.website-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover,
.website-link:hover {
    text-decoration: underline;
}

.company-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.website-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.related-interviews {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
}

.sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 16px;
}

.related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.related-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6c757d;
}

.related-content {
    flex: 1;
}

.related-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #212529;
}

.related-date {
    font-size: 12px;
    color: #6c757d;
}

/* 他のインタビューセクション */
.other-interviews-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #212529;
}

.other-interviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.other-interview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.other-interview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.other-interview-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.other-interview-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.other-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-interview-card:hover .other-thumbnail {
    transform: scale(1.05);
}

.other-no-image {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.other-interview-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.other-category-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(255,255,255,0.9);
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.other-interview-content {
    padding: 16px;
}

.other-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.other-prefecture-tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.other-date {
    font-size: 10px;
    color: #6c757d;
}

.other-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #212529;
}

.other-company-info {
    font-size: 12px;
}

.other-company-name {
    font-weight: 600;
    color: #495057;
    margin-bottom: 2px;
}

.other-representative {
    color: #6c757d;
}

/* Post Navigation */
.post-navigation {
    padding: 32px 0;
    background-color: #f8f9fa;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    flex: 1;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-direction {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-title {
    font-weight: 600;
    color: #212529;
}

.nav-previous .nav-link {
    text-align: left;
}

.nav-next .nav-link {
    text-align: right;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-content .page-title {
        font-size: 2rem;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-controls {
        flex-direction: column;
    }

    .filter-select {
        min-width: unset;
    }

    .interview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .interview-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .article-header {
        padding: 24px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content {
        padding: 24px;
        font-size: 15px;
    }

    .nav-links {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .interview-archive-header {
        padding: 40px 0;
    }

    .header-content .page-title {
        font-size: 1.75rem;
    }

    .header-content .page-subtitle {
        font-size: 1rem;
    }

    .interview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .interview-card-content {
        padding: 16px;
    }

    .card-title {
        font-size: 1rem;
    }

    .article-header {
        padding: 20px;
    }

    .article-title {
        font-size: 1.25rem;
    }

    .article-content {
        padding: 20px;
        font-size: 14px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .company-card,
    .related-interviews {
        padding: 16px;
    }

    .interviewee-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .interviewee-avatar {
        align-self: center;
        margin-bottom: 12px;
    }

    .author-info {
        padding: 20px;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar,
    .author-avatar-placeholder {
        align-self: center;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .other-interviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .other-interview-content {
        padding: 12px;
    }

    .other-title {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .breadcrumb-wrapper,
    .interview-filter-section,
    .interview-sidebar,
    .post-navigation,
    .share-buttons {
        display: none !important;
    }

    .interview-layout {
        grid-template-columns: 1fr;
    }

    .interview-article {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* 他のインタビュー記事（コラムスタイル） */
.other-interview-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.other-interview-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.other-interview-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.other-interview-image {
    position: relative;
    width: 280px;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.other-interview-image .other-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-interview-item:hover .other-interview-image .other-thumbnail {
    transform: scale(1.05);
}

.other-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    font-size: 14px;
}

.other-interview-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.other-interview-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.other-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #6c757d;
}

.other-update-date,
.other-publish-date {
    color: #6c757d;
    font-size: 12px;
}

.other-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #212529;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .other-interviews-list {
        max-width: 100%;
    }

    .other-interview-link {
        flex-direction: column;
    }

    .other-interview-image {
        width: 100%;
        height: 200px;
    }

    .other-interview-content {
        padding: 20px;
    }

    .other-title {
        font-size: 16px;
    }
}