/*** contact table ***/
.contact-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.contact-table td {
    padding: 10px 12px;
    vertical-align: top;
    border-bottom: 1px solid #eee;
}

.contact-table td:first-child {
    font-weight: 500;
}

/* заголовкові рядки */
.contact-table tr:has(td:first-child strong) {
    background-color: #f0f4f9;
    font-weight: 600;
}

.contact-table tr strong {
    color: #1a3d7c;
    display: inline-block;
    margin-bottom: 3px;
}

.contact-table tr:hover {
    background-color: #f9f9f9;
}

@media (max-width: 600px) {
    .contact-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-table tr {
        display: block;
        margin-bottom: 10px;
        border-bottom: 2px solid #ddd;
    }
}
/*** end contact table ***/



/*** accordion-contact ***/
.accordion-section {
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    font-family: sans-serif;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.accordion-section summary {
    background: #1a3d7c;
    padding: 12px 41px 12px 16px;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    position: relative;
}

.accordion-section summary::marker {
    display: none;
}

.accordion-section summary::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.accordion-section[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-entry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
}

.accordion-entry:last-child {
    border-bottom: none;
}

.entry-left {
    max-width: 75%;
}

.entry-title {
    font-weight: bold;
    margin-bottom: 2px;
    color: #1a3da0;
    font-size: 14px;
}

.entry-person {
    font-size: 14px;
    color: #666;
}

.entry-person b {
    font-weight: 700;
    color: black;
}

.entry-phone {
    white-space: nowrap;
    font-weight: bold;
    color: #1a3d7c;
}
/*** end accordion-contact ***/





/*** zvitnisty list ***/
div.blog.list-blog-custom > div > div {
    margin: 0;
}

.list-blog-custom .entry-header {
    padding: 0;
}

.list-blog-custom .page-header {
    padding: 0;
}

.list-blog-custom .items-row {
    margin: 0;
}
/*** zvitnisty list ***/