/*
Theme Name: FitImob
Author: victor.gomide
Description: Simple theme for real estate blog
Version: 0.0.8
Tags: blog
*/

.text-decoration-none, .text-decoration-none a {
    text-decoration: none !important;
}

.resizable-image {
    max-width: 100%;
    height: auto;
    resize: both;
    overflow: auto;
}

@media (max-width: 576px) {
    .resizable-image {
        resize: none;
        width: 100%;
    }
}

.card-body a, .custom-card a {
    color: var(--bs-gray-800);
}

.card-body a:hover, .custom-card a:hover{
    color: var(--bs-black);
}
.pagination .page-item .page-link {
    color: var(--bs-green);
}

.pagination .page-item.active .page-link {
    background-color: var(--bs-green);
    border-color:var(--bs-green);
    color: var(--bs-white);
}


.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 5px 10px;
    max-width: 400px;
    margin: 0 auto;
}

.search-field {
    border: none;
    outline: none;
    padding: 10px;
    flex-grow: 1;
    border-radius: 25px;
}

.search-submit {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}

.search-submit:hover {
    color: var(--bs-green);
}

.search-submit i {
    font-size: 16px;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--bs-gray-600);
    margin-bottom: 1rem;
}

.article-meta span {
    display: inline-block;
    margin-right: 0.5rem;
}

.article-meta span::after {
    content: "|";
    margin-left: 0.5rem;
}

.article-meta span:last-child::after {
    content: "";
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: var(--bs-gray-800);
    font-size: 24px;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--bs-green);
}

.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    background-color: var(--bs-green);
    color: var(--bs-white);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 20px;
}

.bg-blue-official{
    background-color: #1b2d41; !important;
}