/* ==================================================
   COMPANY PAGE LANDING
================================================== */

.company-page-landing,
.company-page-landing * {
    font-family: "Outfit", sans-serif;
    box-sizing: border-box;
}

.company-page-landing {
    padding: 30px 0 72px;
    background: #ffffff;
    color: #1f1f1f;
    font-size: 13px;
    line-height: 1.6;
}

.company-page-landing svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==================================================
   HERO
================================================== */

.company-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 30px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #ffffff;
}

.company-hero__brand {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.company-hero__logo {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fcfcfc;
}

.company-hero__logo img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.company-hero__logo span {
    color: #d63a49;
    font-size: 30px;
}

.company-hero__content {
    min-width: 0;
}

.company-hero__title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.company-hero__title-row h1 {
    margin: 0;
    color: #161616;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.company-hero__badge {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    padding: 0;
    border-radius: 50%;
}

.company-hero__badge svg {
    width: 14px;
    height: 14px;
}

.company-hero__badge--verified {
    background: #fff1f3;
    color: #d63a49;
}

.company-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 14px;
}

.company-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #505050;
    font-size: 13px;
}

.company-hero__meta svg {
    width: 16px;
    height: 16px;
    color: #d63a49;
}

.company-hero__watermark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    min-height: 120px;
    flex: 0 0 220px;
    opacity: 0.12;
}

.company-hero__watermark img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.company-hero__watermark span {
    display: none;
    color: #151515;
    font-size: 34px;
    letter-spacing: -0.03em;
}


/* ==================================================
   LAYOUT
================================================== */

.company-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    margin-top: 26px;
    align-items: start;
}

.company-main,
.company-side {
    display: grid;
    gap: 22px;
}


/* ==================================================
   LEFT CONTENT
================================================== */

.company-card {
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #ffffff;
}

.company-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 26px 18px;
    border-bottom: 1px solid #f0f0f0;
}

.company-card__accent,
.company-panel__accent {
    width: 4px;
    height: 22px;
    flex: 0 0 4px;
    border-radius: 999px;
    background: #d63a49;
}

.company-card__header h2,
.company-panel__header h2 {
    margin: 0;
    color: #161616;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.company-card__body {
    padding: 24px 26px 28px;
}

.company-card__body--text p {
    margin: 0;
    color: #454545;
    font-size: 15px;
    line-height: 1.9;
}

.company-card__body--map {
    display: grid;
    gap: 18px;
}

.company-card__empty {
    margin: 0;
    color: #6e6e6e;
    font-size: 14px;
}


/* ==================================================
   SERVICES
================================================== */

.company-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.company-service-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #ededed;
    border-radius: 12px;
    background: #ffffff;
}

.company-service-item__icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 999px;
    background: #fff1f3;
    color: #d63a49;
}

.company-service-item__icon svg {
    width: 15px;
    height: 15px;
}

.company-service-item span:last-child {
    color: #2d2d2d;
    font-size: 14px;
}


/* ==================================================
   MAP + ADDRESS
================================================== */

.company-map {
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 14px;
}

.company-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.company-address-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fcfcfc;
}

.company-address-box span {
    display: block;
    margin-bottom: 4px;
    color: #848484;
    font-size: 14px;
}

.company-address-box p {
    margin: 0;
    color: #303030;
    font-size: 15px;
    line-height: 1.75;
}

.company-address-box__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #ffffff;
    color: #242424;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}


/* ==================================================
   SIDE PANELS
================================================== */

.company-side {
    position: sticky;
    top: 88px;
}

.company-panel {
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #ffffff;
}

.company-panel__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 22px 18px;
    border-bottom: 1px solid #f0f0f0;
}

.company-panel__body {
    padding: 18px 22px 22px;
}

.company-info-list {
    display: grid;
    gap: 8px;
}

.company-info-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 62px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.company-info-row:last-child {
    border-bottom: 0;
}

.company-info-row__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff1f3;
    color: #d63a49;
}

.company-info-row__icon svg {
    width: 17px;
    height: 17px;
}

.company-info-row div > span {
    display: block;
    margin-bottom: 2px;
    color: #858585;
    font-size: 12px;
}

.company-info-row p {
    margin: 0;
    color: #252525;
    font-size: 13px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.company-info-row a {
    color: #252525;
    text-decoration: none;
}

.company-info-row a:hover {
    color: #d63a49;
}


/* ==================================================
   EXTRA INFO
================================================== */

.company-panel__body--compact {
    padding-top: 8px;
}

.company-extra-list {
    display: grid;
}

.company-extra-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid #f1f1f1;
}

.company-extra-row__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff1f3;
    color: #d63a49;
}

.company-extra-row__icon svg {
    width: 16px;
    height: 16px;
}

.company-extra-row div > span {
    display: block;
    margin-bottom: 2px;
    color: #868686;
    font-size: 12px;
}

.company-extra-row p {
    margin: 0;
    color: #252525;
    font-size: 13px;
    line-height: 1.45;
}

.company-extra-services {
    padding: 14px 0 4px;
}

.company-extra-services__title {
    display: block;
    margin-bottom: 9px;
    color: #7f7f7f;
    font-size: 12px;
}

.company-extra-services__list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.company-extra-services__list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid #eeeeee;
    border-radius: 999px;
    background: #ffffff;
    color: #444444;
    font-size: 12px;
}

.company-action-divider {
    height: 1px;
    margin: 15px 0;
    background: #eeeeee;
}

.company-report-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 38px;
    color: #d63a49;
    font-size: 13px;
    text-decoration: none;
}

.company-report-action__icon {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
}

.company-report-action__icon svg {
    width: 17px;
    height: 17px;
}

.company-report-action:hover {
    color: #b72e3d;
}

.company-share-block {
    text-align: center;
}

.company-share-block__title {
    display: block;
    margin-bottom: 11px;
    color: #243348;
    font-size: 12px;
}

.company-share-block__buttons {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.company-share-block__buttons a,
.company-share-block__buttons button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #e5e9ee;
    border-radius: 50%;
    background: #ffffff;
    color: #15364f;
    font: inherit;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
}

.company-share-block__buttons button svg {
    width: 17px;
    height: 17px;
}

.company-share-block__buttons a:hover,
.company-share-block__buttons button:hover {
    border-color: #d63a49;
    color: #d63a49;
}

.company-share-native.is-copied {
    border-color: #d63a49;
    color: #d63a49;
}


/* ==================================================
   TAGS
================================================== */

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.company-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #e5ebef;
    border-radius: 10px;
    background: #f7fafc;
    color: #2f4150;
    font-size: 12px;
    text-decoration: none;
}

.company-tags a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 7px;
    border-radius: 50%;
    background: #d63a49;
}

.company-tags a:hover {
    border-color: #d6e0e7;
    background: #eef5f8;
    color: #183247;
}


/* ==================================================
   NOTICE
================================================== */

.company-notice {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border: 1px solid #efd8aa;
    border-radius: 14px;
    background: #fffaf1;
}

.company-notice__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff1cf;
    color: #96620d;
}

.company-notice__icon svg {
    width: 18px;
    height: 18px;
}

.company-notice__content h2 {
    margin: 0 0 5px;
    color: #6d4a0c;
    font-size: 14px;
    line-height: 1.4;
}

.company-notice__content p {
    margin: 0;
    color: #695a40;
    font-size: 12px;
    line-height: 1.7;
}

.company-notice__content a {
    color: #96620d;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1080px) {
    .company-layout {
        grid-template-columns: 1fr;
    }

    .company-side {
        position: static;
    }
}

@media (max-width: 760px) {
    .company-page-landing {
        padding: 20px 0 56px;
    }

    .company-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .company-hero__brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .company-hero__logo {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }

    .company-hero__title-row h1 {
        font-size: 25px;
    }

    .company-hero__watermark {
        width: 100%;
        min-height: auto;
        justify-content: flex-start;
    }

    .company-card__header,
    .company-card__body,
    .company-panel__header,
    .company-panel__body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .company-service-grid,
    .company-mini-stats {
        grid-template-columns: 1fr;
    }

    .company-address-box {
        flex-direction: column;
    }
}
