/* ═══════════════════════════════════════════════════════════════════════════
   AcheiGP.com — Design System (TGNHOST)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1a1c23;
    color: #f5f5f5;
    padding-top: 60px;
    padding-bottom: 50px;
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.main-header {
    height: 60px;
    background: rgba(18, 19, 26, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #ff3366;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-area a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 42px;
    width: auto;
}

/* Header search */
.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
}

.header-search input {
    width: 100%;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #32364c;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.header-search input::placeholder {
    color: #626880;
}

.header-search input:focus {
    border-color: #ff3366;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-new-ad {
    background-color: #ffcc00;
    color: #121212;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-new-ad:hover {
    background-color: #e6b800;
}

.login-btn {
    color: #fff;
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #ff3366;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}

.login-btn:hover {
    background: rgba(255, 51, 102, 0.12);
}

.login-btn.profile-active {
    border-color: #ffcc00;
}

.avatar-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #32364c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #a0a5b5;
    overflow: hidden;
}

.avatar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    color: #a0a5b5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.bate-papo-link {
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.bate-papo-link:hover {
    border-color: #ffcc00;
    background: rgba(255, 204, 0, 0.08);
}

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ── MAIN LAYOUT ────────────────────────────────────────────────────────── */
.main-layout {
    display: flex;
    max-width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    gap: 20px;
}

.sidebar {
    width: 230px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.container {
    flex-grow: 1;
    min-width: 0;
}

/* ── SEARCH TITLE ───────────────────────────────────────────────────────── */
.search-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left;
    border-left: 4px solid #ff3366;
    padding-left: 10px;
}

/* ── FILTER BAR ─────────────────────────────────────────────────────────── */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    background: #1f222f;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #32364c;
}

.filter-bar select {
    flex: 1;
    min-width: 150px;
    padding: 10px 14px;
    background: #171923;
    border: 1px solid #32364c;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.filter-bar select:focus {
    outline: none;
    border-color: #ff3366;
}

/* ── SIDEBAR CARDS ──────────────────────────────────────────────────────── */
.sidebar-card {
    background-color: #1f222f;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ffcc00;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: opacity 0.5s ease-in-out;
    position: relative;
}

.sidebar-img {
    width: 100%;
    height: 150px;
    background-color: #252836;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 1px solid #32364c;
}

.sidebar-info {
    padding: 10px;
    text-align: center;
}

.sidebar-info h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-info p {
    color: #a0a5b5;
    font-size: 12px;
}

.sidebar-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ffcc00;
    color: #121212;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
    background-color: #ff3366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #e02454;
}

.btn:disabled {
    background-color: #4a4d61;
    color: #a0a5b5;
    cursor: not-allowed;
}

.btn-premium {
    background-color: #ffcc00;
    color: #121212;
}

.btn-premium:hover {
    background-color: #e6b800;
}

.btn-secondary {
    background-color: #4a4d61;
    color: white;
}

.btn-secondary:hover {
    background-color: #3b3d4f;
}

.btn-whats {
    background-color: #25d366;
    color: white;
}

.btn-whats:hover {
    background-color: #1ebd58;
}

.btn-whats:disabled {
    background-color: #4a4d61;
    color: #a0a5b5;
    cursor: not-allowed;
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

/* ── FORM ELEMENTS ──────────────────────────────────────────────────────── */
select, input, textarea {
    width: 100%;
    padding: 14px;
    background-color: #1f222f;
    border: 1px solid #32364c;
    color: white;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    display: block;
}

select:focus, input:focus, textarea:focus {
    outline: none;
    border-color: #ff3366;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #a0a5b5;
}

.form-group small {
    color: #a0a5b5;
    display: block;
    margin-top: 4px;
}

/* ── ADS GRID ───────────────────────────────────────────────────────────── */
.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.gp-card {
    display: block;
    background-color: #1f222f;
    border-radius: 8px;
    border: 1px solid #32364c;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

.gp-card:hover {
    transform: translateY(-3px);
    border-color: #ff3366;
}

.gp-card--turbinado {
    border-color: #ffcc00;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.2);
}

.gp-card--turbinado:hover {
    border-color: #ffcc00;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.35);
}

/* ── AD CARD COVER ──────────────────────────────────────────────────────── */
.gp-card__cover {
    width: 100%;
    height: 200px;
    background: #252836;
    position: relative;
    overflow: hidden;
}

.gp-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gp-card__cover--placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #626880;
}

/* ── AD CARD BODY ───────────────────────────────────────────────────────── */
.gp-card__body {
    padding: 15px;
}

.gp-card__body h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gp-card__city {
    color: #a0a5b5;
    font-size: 13px;
    margin-bottom: 4px;
}

.gp-card__price {
    color: #ffcc00;
    font-size: 18px;
    font-weight: 700;
}

/* ── AD CARD ACTIONS ────────────────────────────────────────────────────── */
.gp-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-top: 1px solid #252836;
}

.ad-stat {
    color: #a0a5b5;
    font-size: 13px;
}

.ad-stat--views {
    color: #626880;
}

/* ── FILTER ACTIONS ─────────────────────────────────────────────────────── */
.filter-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

/* ── MODAL SYSTEM ───────────────────────────────────────────────────────── */
/* Modal large variant (global ad modal) */
.modal-card--lg {
    max-width: 850px;
}

/* ── AD FORM GRID (Modal Global) ──────────────────────────────────────── */
.ad-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ad-form-inputs {
    min-width: 0;
}

.ad-form-upload {
    min-width: 0;
}

.ad-form-upload > label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #a0a5b5;
    font-size: 14px;
}

/* ── DROP ZONE ────────────────────────────────────────────────────────── */
.drop-zone {
    border: 2px dashed #32364c;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #171923;
    margin-bottom: 10px;
}

.drop-zone:hover,
.drop-zone.drag-over {
    border-color: #ff3366;
    background: rgba(255, 51, 102, 0.05);
}

.drop-zone .upload-icon {
    font-size: 32px;
    color: #626880;
    display: block;
    margin-bottom: 8px;
}

.drop-zone p {
    color: #a0a5b5;
    font-size: 14px;
    margin-bottom: 4px;
}

.drop-zone small {
    color: #626880;
    font-size: 11px;
}

/* ── FOTO PREVIEWS ────────────────────────────────────────────────────── */
.foto-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.foto-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #32364c;
    flex-shrink: 0;
}

.foto-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foto-preview-item .foto-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(231, 76, 60, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.foto-preview-item .foto-remove:hover {
    background: #e74c3c;
}

/* ── FORM ACTIONS ─────────────────────────────────────────────────────── */
.ad-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #32364c;
}

/* ── PROCESSING OVERLAY ────────────────────────────────────────────────── */
.processing-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 19, 26, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 10;
    gap: 15px;
}

.processing-overlay p {
    color: #a0a5b5;
    font-size: 14px;
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #32364c;
    border-top-color: #ff3366;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── MODAL SYSTEM ───────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #1f222f;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid #32364c;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #a0a5b5;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #ff3366;
}

.modal-card h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid #ff3366;
    padding-bottom: 10px;
}

.modal-card h3 {
    color: #ff3366;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── CUSTOM CONFIRM MODAL ───────────────────────────────────────────────── */
.custom-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalIn 0.25s ease;
}

.custom-confirm-card {
    background: #1f222f;
    padding: 30px;
    border-radius: 10px;
    max-width: 420px;
    width: 90%;
    border: 1px solid #ff3366;
    text-align: center;
}

.custom-confirm-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.custom-confirm-card p {
    color: #a0a5b5;
    margin-bottom: 20px;
    font-size: 14px;
}

.custom-confirm-card input {
    margin-bottom: 15px;
}

.custom-confirm-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* ── TOAST NOTIFICATIONS ────────────────────────────────────────────────── */
#toast-container {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: #1f222f;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid #ff3366;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: toastIn 0.3s ease;
    max-width: 380px;
}

.toast.success {
    border-left-color: #25d366;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.fade-out {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ── STATUS BAR ─────────────────────────────────────────────────────────── */
.status-bar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    padding: 10px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 1500;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.status-bar.show {
    transform: translateY(0);
}

.status-bar.success {
    background: #1b5e20;
    color: #fff;
    border-bottom: 2px solid #25d366;
}

.status-bar.error {
    background: #5e1b1b;
    color: #fff;
    border-bottom: 2px solid #e74c3c;
}

/* ── SERVICE CATEGORIES ─────────────────────────────────────────────────── */
.service-category {
    background: #171923;
    border: 1px solid #32364c;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.service-category h4 {
    color: #ff3366;
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #32364c;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff3366;
}

.checkbox-item span {
    font-size: 14px;
    color: #f5f5f5;
}

/* ── TERMS OF USE ───────────────────────────────────────────────────────── */
.terms-box {
    background-color: #171923;
    border: 1px solid #32364c;
    color: #a0a5b5;
    font-size: 12px;
    height: 120px;
    overflow-y: scroll;
    padding: 12px;
    border-radius: 5px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.terms-box h5 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 13px;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
    background: #12131a;
    border-top: 1px solid #32364c;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    color: #a0a5b5;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.site-footer .footer-links a:hover {
    color: #ff3366;
}

.site-footer .footer-copy {
    color: #626880;
    font-size: 12px;
}

/* ── CHAT / BATE PAPO ───────────────────────────────────────────────────── */
.chat-container {
    display: flex;
    gap: 20px;
    height: 450px;
}

.chat-messages {
    flex: 1;
    background: #171923;
    border: 1px solid #32364c;
    border-radius: 5px;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-users {
    width: 200px;
    background: #1f222f;
    border: 1px solid #32364c;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.chat-users h4 {
    font-size: 13px;
    color: #ff3366;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #32364c;
}

.chat-users-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chat-user-btn {
    background: #252836;
    border: 1px solid #32364c;
    color: #fff;
    padding: 6px;
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
}

.chat-user-btn:hover {
    background: #2d3040;
    border-color: #ff3366;
}

.chat-input-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.chat-input-row input {
    flex: 1;
}

.chat-header-bar {
    background: #12131a;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff3366;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-msg {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
}

.chat-msg.system {
    background: #252836;
    color: #ffcc00;
    font-style: italic;
}

.chat-msg.reservado {
    background: rgba(255, 51, 102, 0.15);
    border-left: 3px solid #ff3366;
    color: #ff6699;
}

.chat-msg.geral {
    color: #f5f5f5;
}

/* ── PAYMENT ────────────────────────────────────────────────────────────── */
.payment-box {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    display: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.panel-box {
    max-width: 500px;
    margin: 0 auto;
    background: #1f222f;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #32364c;
}

.link-recuperar {
    display: block;
    text-align: right;
    color: #ff3366;
    font-size: 13px;
    text-decoration: none;
    margin-top: -10px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-search {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .header-actions .btn-new-ad {
        display: none;
    }

    .logo-area {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo-svg {
        height: 32px;
    }

    .login-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .header-container {
        padding: 0 12px;
    }

    .main-layout {
        padding: 0 12px;
        gap: 0;
    }

    .container {
        padding: 0;
    }

    .ads-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .filter-bar {
        flex-direction: column;
        gap: 8px;
    }

    .filter-bar select {
        min-width: auto;
    }

    .gp-card__cover {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .ads-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gp-card__cover {
        height: 140px;
    }

    .ad-info h3 {
        font-size: 15px;
    }
}
