.page-id-65314 #main:not(.sidebar-none) .wf-container-main {
    display: flex !important;
    justify-content: center !important;
}

.page-id-65314 .content {
    width: 100%;
}

.page-id-65314 .content h1 {
    text-align: center;
}

.mc-compare {
    margin: 0 auto;
    padding: 20px 0 50px;
    width: 100%;
    max-width: 1100px;
}

.mc-compare__controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.mc-compare__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.mc-select {
    position: relative;
}

.mc-select__native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mc-select__trigger {
    width: 100%;
    height: 60px;
    padding: 8px 24px 8px 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    text-align: left;
    position: relative;
    border-radius: 10px;
}

.mc-select__trigger-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
}

.mc-select.is-open .mc-select__trigger-arrow {
    transform: translateY(-20%) rotate(225deg);
}

.mc-select__trigger-inner,
.mc-select__option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mc-select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    width: calc(100% - 20px);
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 8px;
}

.mc-select__option {
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
}

.mc-select__option:hover {
    background: #f7f7f7;
}

.mc-select__option.is-selected {
    background: #f1f1f1;
}

.mc-select__option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.mc-select__option-media {
    width: 100%;
    max-width: 75px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
}

.mc-select__option-media .mc-model-card__image,
.mc-select__option-media .mc-model-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.mc-select__option-text {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}

.mc-compare__table-wrap {
    position: relative;
    overflow-x: auto;
}

.mc-compare__table-wrap.is-loading {
    opacity: 0.65;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mc-compare__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    table-layout: fixed;
}

.mc-compare__table th,
.mc-compare__table td {
    padding: 10px 12px;
    border: 1px solid #222;
    vertical-align: baseline;
}

.mc-compare__table th:nth-child(1),
.mc-compare__table td:nth-child(1) {
    width: 30%;
}
.mc-compare__table th:nth-child(2),
.mc-compare__table td:nth-child(2),
.mc-compare__table th:nth-child(3),
.mc-compare__table td:nth-child(3) {
    width: 35%;
}

.mc-compare__table th:nth-child(1) {
    vertical-align: middle;
}

.mc-compare__table thead th {
    font-weight: 500;
}

.mc-compare__table td {
    font-size: 14px;
}
.mc-compare__table td:not(:first-child) {
    font-size: 12px;
}

.mc-compare__table tbody tr:nth-child(even) td {
    background: #f8f8f8;
}

.mc-compare__table .special-row td {
    background: #3c4650 !important;
    color: #fff !important;
}

.mc-model-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.mc-model-card__image,
.mc-model-card__placeholder {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.mc-model-card__title {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.mc-compare__notice {
    padding: 14px 16px;
    border: 1px solid #ddd;
    background: #fafafa;
}

@media (max-width: 767px) {
    .mc-compare__controls {
        grid-template-columns: 1fr;
    }

    .mc-model-card__image,
    .mc-model-card__placeholder {
        height: 70px;
    }
    
    .mc-model-card__title {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .mc-compare__table {
        min-width: 460px;
    }
    .mc-compare__table th, .mc-compare__table td {
        padding: 8px 10px;
    }
    .mc-compare__table td {
        font-size: 12px;
    }
    .mc-compare__table td:not(:first-child) {
        font-size: 10px;
    }
    .mc-select__option-media .mc-model-card__image {
        height: 44px !important;
    }
}