.company-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
    color: #111;
    background: #f7f8fa;
    margin: 0;
    padding: 0;
}

.company-hero {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    padding: 72px 20px 56px;
}

.company-hero-inner {
    max-width: 1040px;
    margin: 0 auto;
}

.company-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
}

.company-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin: 0;
}

.company-content {
    max-width: 1040px;
    margin: 32px auto 56px;
    padding: 0 20px;
    padding-bottom:20px;
    box-sizing: border-box;
}

.company-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px 24px 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 20px;
}

.company-section-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #111827;
}

.company-image {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    padding: 30px;
    background: #f9fafb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    }
}

.company-text {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: #4b5563;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.company-card {
    border-radius: 10px;
    padding: 18px 18px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.company-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111827;
}

.company-values {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}

.company-values li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    border-top: 1px solid #f3f4f6;
    font-size: 14px;
    color: #4b5563;
}

.company-values li:first-child {
    border-top: none;
}

.company-values strong {
    font-weight: 600;
    color: #111827;
}

.company-values span {
    font-size: 13px;
}

.company-contact ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    font-size: 14px;
    color: #374151;
}

.company-contact li {
    padding: 4px 0;
}

.company-contact strong {
    display: inline-block;
    width: 72px;
    color: #111827;
}

.company-footer {
    border-top: 1px solid #e5e7eb;
    padding: 18px 20px 26px;
    background: #f3f4f6;
    text-align: center;
}

.company-footer-text {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
}

/* 기자단 그리드 */
.reporter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.reporter-card {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reporter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reporter-photo {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f3f4f6;
    overflow: hidden;
}

.reporter-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reporter-photo.no-image::before {
    content: '사진';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
}

.reporter-info {
    padding: 12px 8px;
    background: #fff;
}

.reporter-position {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    line-height: 1.4;
}

.reporter-name {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .reporter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .company-hero {
        padding: 52px 16px 40px;
    }

    .company-title {
        font-size: 24px;
    }

    .company-subtitle {
        font-size: 14px;
    }

    .company-content {
        margin: 24px auto 40px;
        padding: 0 16px;
    }

    .company-section {
        padding: 18px 16px 16px;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .reporter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .reporter-info {
        padding: 10px 6px;
    }

    .reporter-position {
        font-size: 11px;
    }

    .reporter-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .reporter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


