.phone-button-container {
    text-align: center;
    margin: 20px 0;
    width: 100%;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff9c4f;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: #e06606;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 156, 79, 0.3);
}

.phone-button__icon {
    width: 20px;
    height: 20px;
    background: url("/assets/images2/icons/phone.png") no-repeat center;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.phone-button__number {
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 767.98px) {
    .phone-button {
        font-size: 16px;
        padding: 14px 24px;
        width: 100%;
        max-width: 220px;
    }
    
    .phone-button__icon {
        width: 18px;
        height: 18px;
    }
}

.blog__block-date {
  color: #aaa;
  font-size: 16px;
  margin-top: 8px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
