﻿/*
Theme Name: Reboot Child
Theme URI: https://wpshop.ru/themes/reboot
Author: WPShop.biz
Author URI: http://wpshop.biz/
Template: reboot
Version: 1.0.0
*/

/* Below you can add your CSS styles */
/* Ниже Вы можете добавить свои CSS стили */

/* ПЕРВОЙ СТРОКОЙ в файле */
@import url('data:,');

/* Фиксируем конкретное изображение */
img[src*="mini.png"] {
    width: 100px !important;
    height: 50px !important;
    aspect-ratio: 2/1 !important;
    display: block !important;
}

img.wp-post-image {
  aspect-ratio: 16/9;
  width: 870px;
  height: auto;
  display: block;
}

/* Блокируем все Google Fonts */
* {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

body {
  line-height: 1.6;
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

p {
  line-height: 1.6; /* фиксация! */
}

.hero-text {
  min-height: 2.5em;
}

p.hero-subtitle {
  min-height: 1.2em;
}

/* Кнопка "Читать далее" для поиска */
.custom-read-more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 160, 133, 0.3);
}

.custom-read-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 160, 133, 0.4);
    color: white !important;
}

@media (max-width: 768px) {
    .custom-read-more-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}