/* Main Share Button */
.sharecapture-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #274c77;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;

    border-radius: 10px;

    cursor: pointer;
    width: 100%;
    justify-content: center;

    transition: background 0.2s ease, transform 0.15s ease;
}

.sharecapture-btn i {
    font-size: 18px;
}

/* Hover */
.sharecapture-btn:hover {
    background: #1d3b5d;
}

/* Active press effect */
.sharecapture-btn:active {
    transform: scale(0.97);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .sharecapture-btn {
        margin: 10px auto 20px;
    }
}
/* Външен контейнер – квадрат за социалните мрежи */
#capture-wrapper {
    width: 1080px;
    background: #dde2e5;
    padding: 40px;
    border-radius: 30px;
    border: 4px solid #274c77;
    box-sizing: border-box;
    font-family: "Philosopher", sans-serif;
}

/* Лого */
.capture-logo {
    width: 80%;
    max-width: 700px;
    display: block;
    margin: 0 auto 40px auto;
}

/* Ред с две колони */
.capture-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

/* Ляв блок */
.capture-left {
    width: 50%;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #274c77;
}

/* Десен блок (снимка) */
.capture-right {
    width: 50%;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #274c77;
}

.capture-right img {
    width: 100%;
    border-radius: 14px;
}

/* Долната картинка */
.capture-footer {
    width: 80%;
    max-width: 600px;
    display: block;
    margin: 20px auto 0 auto;
}
