main {
    min-height: 50vh;
}
.site-header {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 8px 0;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.logo img {
    display: block;
    height: 30px;
    width: 150px;
}
.search-bar {
    display: none;
    position: relative;
    flex: 1;
    max-width: 380px;
}
.search-input {
    width: 100%;
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
    outline: none;
    background-color: #444;
    color: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.search-input:focus {
    background-color: var(--color-grey-5);
    color: var(--color-secondary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
html[dir="ltr"] .search-input { padding: 8px 44px 8px 14px; }
html[dir="rtl"] .search-input { padding: 8px 14px 8px 44px; }
.search-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}
.search-bar:focus-within .search-btn {
  color: var(--color-secondary);
}
html[dir="ltr"] .search-btn { right: 10px; }
html[dir="rtl"] .search-btn { left: 10px; }
#searchResults {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 1000;
    width: calc(100% - 2px);
    background: var(--color-grey-5);
    border: 1px solid var(--color-grey-5);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}
.search-result-group {
    border-bottom: 1px dashed var(--color-grey-70);
    padding: 8px 12px;
}
.search-result-group:last-child {
    border-bottom: none;
}
.search-group-title {
    text-align: center;
    font-weight: bold;
    font-size: var(--font-size-small);
    margin-bottom: 6px;
    color: var(--color-secondary);
}
.search-result-group a {
    display: block;
    padding: 4px 0;
    font-size: var(--font-size-small);
    text-decoration: none;
    color: var(--color-secondary);
    border-bottom: 1px dashed var(--color-grey-20);
}
.search-result-group a:last-child {
    border-bottom: none;
}
.search-result-more {
    padding: 8px 12px;
    text-align: center;
    border-top: 1px dashed var(--color-grey-30);
    background-color: var(--color-grey-5);
}
.see-more-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
    text-decoration: none;
    transition: all 0.2s ease;
}
.see-more-btn:hover {
    background-color: var(--color-grey-30);
    color: var(--color-secondary);
    text-decoration: none;
}
.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-link {
    color: white;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-body);
    padding: 0 8px;
    display: none;
}
.header-link:hover {
    text-decoration: none;
    color: var(--color-primary);
}
html[dir="ltr"] .header-link:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}
html[dir="rtl"] .header-link:not(:first-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.settings-dropdown-wrapper {
    position: relative;
}

.search-dropdown-wrapper {
    margin: 0 6px;
}
.settings-btn, .search-h-btn {
    background-color: var(--color-grey-5);
    color: var(--color-secondary);
    width: 25px;
    height: 25px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--font-size-small);
}
.settings-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 14px;
    background-color: white;
    color: var(--color-secondary);
    padding: 16px;
    border: 1px solid var(--color-grey-10);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 220px;
    z-index: 10;
}
html[dir="ltr"] .settings-dropdown { right: 0; }
html[dir="rtl"] .settings-dropdown { left: 0; }
.settings-dropdown label {
    display: block;
    margin-bottom: 4px;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}
.settings-dropdown select {
    width: 100%;
    margin-bottom: 12px;
    padding: 4px 8px;
    border: 1px solid var(--color-grey-30);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
    background: var(--color-grey-10);
}
.btn-outline-secondary {
    background-color: white;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.setting-label {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}
.btn-outline-secondary:hover {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary-dark);
}

.breadcrumb-bar {
    background-color: var(--color-grey-10);
    padding: 8px 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.breadcrumb-bar::-webkit-scrollbar {
    display: none;
}
.breadcrumb {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    padding: 0 16px;
    gap: 8px;
}
.breadcrumb a {
    position: relative;
    color: var(--color-secondary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-body);
    text-decoration: none;
    padding-inline-end: 14px;
}
html[dir="ltr"] .breadcrumb a::after {
    content: "/";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-secondary);
}
html[dir="rtl"] .breadcrumb a::after {
    content: "/";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
}
html[dir="rtl"] .breadcrumb a:last-child::after, html[dir="ltr"] .breadcrumb a:last-child::after {
    content: none;
}


.main-widget {
    margin: auto 0;
    padding: 8px;
    border: 1px solid var(--color-grey-20);
    border-radius: var(--radius-sm);
}
.main-widget.no-padding {
    padding: 0;
}














.ads-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    background: var(--color-grey-10);
    border-bottom: 1px solid var(--color-grey-30);
}
.ads-header h2 {
    margin: 0;
    color: var(--color-secondary);
    font-size: var(--font-size-body);
}
.ads-header-buttons {
    display: flex;
    gap: 8px;
}
.ads-header select, .ads-header button {
    padding: 4px 8px;
    cursor: pointer;
    border: 1px solid var(--color-grey-30);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
    background: white;
}
.ad-list {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 8px;
}
.ad-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-grey-30);
    padding: 2px;
    gap: 16px;
    max-width: 100%;
    transition: all 0.3s ease;
}
.ad-item:hover {
    background: var(--color-grey-20);
    text-decoration: none;
}
.ad-item:last-child {
    border-bottom: none;
}
.ad-item-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-grey-20);
    border-radius: var(--radius-sm);
    position: relative;
    background-color: var(--color-grey-20);
}
.ad-item-icon i {
    font-size: 30px;
    color: var(--color-grey-60);
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ad-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-grey-20);
    border-radius: var(--radius-sm);
}
.ad-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
h3.ad-title {
    color: var(--color-secondary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-body);
    margin: 0;
    padding: 0;
    width: 260px;
    max-width: 260px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}
.ad-meta {
    color: var(--color-secondary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-small);
    min-width: 90px;
    max-width: 90px;;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 992px) {
    .ad-details {
        flex-direction: column;
    }
    .ad-details .ad-meta {
        display: none;
    }
    .ad-item img {
        width: 60px;
        height: auto;
    }
    h3.ad-title {
        color: var(--color-secondary);
        font-size: var(--font-size-small);
        font-weight: var(--font-weight-body);
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .ads-header h2 {
        display: none;
    }
    .ads-header h2.fixed {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .ads-header-buttons {
        width: 100%;
        justify-content: space-between;
    }
    .ads-header-buttons.auto {
        width: auto;
        justify-content: space-between;
    }
    .filter-panel {
        position: fixed;
        top: 0;
        right: -256px;
        width: 240px;
        height: 100%;
        background: #fff;
        border-left: 1px solid var(--color-grey-30);
        box-shadow: -4px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 8px;
        z-index: 1000;
        overflow-y: auto;
    }
    .filter-panel.open {
        right: 0;
    }
}
@media (max-width: 992px) {
    .filter-panel {
        display: block;
    }
}





















.section-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    background: var(--color-grey-5);
    border: 1px solid var(--color-grey-10);
    border-radius: var(--radius-sm);
    transition: border 0.3s ease;
    gap: 8px;
}
.section-card:not(:first-child) {
    margin-top: 12px;
}
.section-card:hover {
    background-color: white;
    border-color: var(--color-primary);
    text-decoration: none;
}
.section-card:hover .section-icon {
    background-color: var(--color-secondary);
}
.section-card:hover .section-icon i {
    color: white;
}
.section-start {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.section-icon i {
    font-size: 18px;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}
.section-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}
.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.section-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.section-title {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin: 0;
}
.section-description {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-small);
    color: var(--color-grey-90);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.section-end span {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-body);
    color: var(--color-secondary);
}
.section-end i {
    font-size: 14px;
    color: var(--color-secondary);
}











.main-widget-header {
    display: flex;
    padding: 4px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-grey-20);
}
.main-widget .title {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-body);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.widget-header-end a {
    padding: 0 8px;
    border: 1px solid var(--color-grey-20);
    color: var(--color-secondary);
    transition: all 0.3 ease;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-body);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}
.widget-header-end a:hover {
    text-decoration: none;
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    color: white;
}
.main-items {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.main-items-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    justify-content: center;
}










.image-gallery {
    width: 100%;
    margin: 0 auto;
}
.main-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    position: relative;
}
.main-image-container img {
    max-width: 100%;
    min-width: 100%;
    max-height: 100%;
    min-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-grey-20);
}
.main-image-container i {
    font-size: 80px;
    color: var(--color-grey-60);
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.thumbnail-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    position: relative;
}
.nav-btn {
    background: white;
    border: 1px solid var(--color-grey-40);
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    text-align: center;
    padding: 0;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: center;
    flex: 1;
    padding: 6px 0;
    position: relative;
}
.thumbnails::-webkit-scrollbar {
    display: none;
}
.thumbnails img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: border 0.2s;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
}
.thumbnails img:hover, .thumbnails img.active {
    border-color: var(--color-primary);
}

.table-info {
    width: 100%;
    border-collapse: collapse;
    border: none;
}
.table-info tr {
    border-bottom: 1px dashed var(--color-grey-30);
}
.table-info tr:last-child {
    border-bottom: 1px dashed transparent;
}

.table-info td {
    padding: 2px 0;
    vertical-align: top;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}
.ad-h1 {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    margin: 0;
    padding: 0;
}

.table-info td:first-child {
    width: 140px;
    color: var(--color-grey-100);
}

.table-info td:last-child {
    width: calc(100% - 140px);
    color: var(--color-grey-90);
}

.u-name {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
    color: rgba(var(--color-secondary-rgb), 1);
}
.u-member-since {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    color: rgba(var(--color-secondary-rgb), 0.8);
}
.u-btn {
    display: flex;
    justify-content: space-between;
    margin: 5px 10px;
    padding: 2px 28px;
    border: 1px solid var(--color-grey-30);
    border-radius: var(--radius-sm);
}
.u-btn .title {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}
.u-btn .phone {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    direction: ltr;
}
p.safety-tips, p.safety-tips a {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}
.copyright {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}





.pagination-bar {
    margin-top: 16px;
    text-align: center;
}
.pagination {
    display: inline-flex;
    gap: 6px;
    padding: 0;
    list-style: none;
    direction: ltr;
}
html[dir="rtl"] .pagination {
    direction: rtl;
}

.pagination li {
    margin: 0;
}
.pagination a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--color-grey-30);
    background-color: white;
    color: var(--color-secondary);
    border-radius: var(--radius-xs);
    text-decoration: none;
    font-size: var(--font-size-small);
}
.pagination li.active a {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary-dark);
}
.pagination a:hover {
    background-color: var(--color-grey-10);
}

.filter-widget {
    background: var(--color-grey-10);
}
.filter-label {
    display: block;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}
.filter-select {
    padding: 4px 8px;
    margin: 4px auto;
    width: 100%;
    max-width: 320px;
    border: 1px solid var(--color-grey-20);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
}
.filter-input {
    padding: 4px 8px;
    margin: 4px auto;
    width: calc(100% - 18px);
    max-width: 320px;
    border: 1px solid var(--color-grey-20);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-small);
}








.site-footer {
    background-color: var(--color-grey-10);
    color: var(--color-secondary);
    padding-top: 24px;
    font-size: var(--font-size-small);
}

.site-footer .container {
    margin: auto;
}

.footer-top {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-grey-30);
    flex-wrap: wrap;
}
.footer-socials, .footer-apps {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }
    .footer-socials, .footer-apps {
        margin: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-apps {
        gap: 12px;
    }
}

.footer-socials a {
    color: var(--color-secondary);
    font-size: 18px;
    margin-right: 12px;
    transition: color 0.2s ease;
}
.footer-socials a:hover {
    color: var(--color-primary);
}

.footer-apps img.app-badge {
    height: 40px;
}

.footer-title {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
}
.footer-m {
    padding: 20px 0;
}
.footer-about {
    font-size: var(--font-size-small);
    color: var(--color-secondary);
    text-align: justify;
}
html[dir="ltr"] .footer-about {
    text-align-last: left;
}
html[dir="rtl"] .footer-about {
    text-align-last: right;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li {
    margin-bottom: 3px;
    text-align: center;
}
.footer-nav a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-body);
}
.footer-nav a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
}










.ad-card {
    display: block;
    text-decoration: none;
    background: var(--color-grey-5);
    border: 1px solid var(--color-grey-20);
    border-radius: var(--radius-sm);
    overflow: hidden;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    min-width: 210px;
    max-width: 210px;
    width: 210px;
    cursor: pointer;
}
.ad-card:hover {
    text-decoration: none;
    border: 1px solid var(--color-primary);
    color: var(--color-secondary-dark);
}
.ad-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-top-left-radius: var(--radius-sm);
    border-top-right-radius: var(--radius-sm);
    width: 210px;
    height: 210px;
    background-color: var(--color-grey-20);
}
.ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}
.ad-image i {
    font-size: 40px;
    color: var(--color-grey-60);
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.image-top-right {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(var(--color-secondary-rgb), 0.5);
    color: #fff;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-small);
    padding: 1px 8px;
    border-radius: var(--radius-sm);
}
.image-top-left {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(var(--color-secondary-rgb), 0.5);
    color: #fff;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-small);
    padding: 1px 8px;
    border-radius: var(--radius-sm);
}
.image-bottom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-secondary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-small);
    padding: 1px 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ad-title {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-body);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 4px;
}
















.main-space-y { margin: 20px auto; }
.widget-space-y { margin: 10px auto; }
@media (min-width: 576px) {
    .logo img { height: 33px; width: 165px; }
    .main-space-y { margin: 20px auto; }
    .widget-space-y { margin: 10px auto; }
}
@media (min-width: 768px) {
    .logo img { height: 35px; width: 175px; }
    .search-bar { display: flex; }
    .main-space-y { margin: 25px auto; }
    .widget-space-y { margin: 15px auto; }
}
@media (min-width: 992px) {
    .logo img { height: 37px; width: 185px; }
    .header-link { display: inline-block; }
    .main-space-y { margin: 30px auto; }
    .widget-space-y { margin: 20px auto; }
}
@media (min-width: 1200px) {
    .logo img { height: 40px; width: 200px; }
    .main-space-y { margin: 35px auto; }
    .widget-space-y { margin: 25px auto; }
}
@media (min-width: 1400px) {
    .main-space-y { margin: 40px auto; }
    .widget-space-y { margin: 30px auto; }
}