/* THANNECT Results Manager Styles */

.result-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.result-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.result-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card-link:hover .result-card {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.result-images {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.result-image-wrapper {
    flex: 1;
    text-align: center;
}

.result-image-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.result-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-arrow {
    font-size: 2rem;
    color: #D4A574;
    font-weight: bold;
    flex-shrink: 0;
}

.result-customer-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.result-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.result-age-gender,
.result-period,
.result-service {
    font-size: 0.9rem;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 12px;
}

.result-service {
    background: #e8f4f8;
    color: #2c5f7c;
}

.result-achievement {
    background: #fff3e0;
    color: #e65100;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9800;
}

.result-achievement-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e65100;
    margin-bottom: 5px;
}

.result-achievement p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.result-comment {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #D4A574;
}

.result-comment p {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

.result-read-more {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    color: #D4A574;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.result-card-link:hover .read-more-btn {
    color: #c49563;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .result-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }

    .result-card {
        padding: 20px;
    }

    .result-images {
        flex-direction: row;
        gap: 15px;
    }

    .result-arrow {
        font-size: 3vw;
    }

    .result-image-wrapper img {
        height: 180px;
    }

    .result-customer-name {
        font-size: 3vw;
    }

    .result-subtitle {
        font-size: 2.2vw;
    }

    .result-meta {
        justify-content: center;
    }

    .meta-item {
        font-size: 1.8vw !important;
    }

    .read-more-btn {
        font-size: 2vw;
    }
}

@media (max-width: 480px) {
    .result-images {
        flex-direction: row;
        gap: 10px;
    }

    .result-arrow {
        font-size: 3.5vw;
    }

    .result-customer-name {
        font-size: 3.5vw;
    }

    .result-subtitle {
        font-size: 2.5vw;
    }

    .meta-item {
        font-size: 2.2vw !important;
    }

    .read-more-btn {
        font-size: 2.5vw;
    }
}
