/*
Theme Name: Estatik child
Theme URI: 
Description: A child theme of Estatik
Author: Your Name
Author URI: http://example.com
Template: Estatik-realtor-theme
Version: 1.0.7
*/

/* ここに子テーマのカスタムCSSを追加 */

/* ========================================
   Services Card Grid
   ======================================== */
.services-container {

    display: grid !important;

    grid-template-columns: repeat(2, 1fr) !important;

    gap: 32px;

    max-width: 1140px;

    margin: 0 auto;

    padding: 0 15px;

}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: 3px solid #1e73be;
    border-radius: 4px;
    padding: 30px 24px 24px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.service-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-content {
    flex: 1;
    margin-bottom: 20px;
}

.service-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-description {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

.read-more-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 22px;
    border: 1px solid #1e73be;
    border-radius: 3px;
    color: #1e73be;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.read-more-btn:hover {
    background: #1e73be;
    color: #fff;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-item {
        padding: 24px 20px 20px;
    }
}