@charset "utf-8";

.wp-block-table table,
.wp-block-table td {
    border-color:#ccc!important;
}

.company_detail {
    font-size: 2rem;
}

.company_detail tr td {
    padding-left:1.3em;
}
.company_detail tr td:first-child {
    background: var(--main-color);
    color: #fff;
}

.link-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    align-items: stretch;
}

.col-left, .col-right {
    flex: 1;
    min-width: 0;
}

.col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    border: 2px solid var(--main-color);
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-large {
    height: 100%;
}

.card-small {
    flex: 1;
}

.card h2 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.card h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--main-color);
    text-align: center;
}

.card p {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.logo-container {
    text-align: center;
    margin: auto;
}

.logo-container img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    max-width: 250px;
}

.creva-logo {
    max-width: 250px;
    height: auto;
    margin: 10px auto 20px;
    display: block;
}

.dot-list {
    text-align: center;
    margin: 20px 0;
}

.dot-list .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin: 0 4px;
}

.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px; 
    padding: 12px 50px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    color: var(--main-color)!important;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
}

.card-small .link-button {
    margin-top: 20px;
}

.link-button:hover {
    background-color: var(--accent-color);
    color: #fff!important;
    border-color: var(--accent-color);
}

.link-icon {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    background-image: var(--link-icon-url);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.link-button:hover .link-icon {
    mask-image: var(--link-icon-url);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #fff;
    background-image: none;
}

@media (max-width: 900px) {
    .link-container {
        flex-direction: column;
        margin: 20px auto;
    }
    .card {
        padding: 20px;
    }
    .card-small, .card-large {
        height: auto;
    }
    .link-button {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}