/*
 * Plain-PHP recreation of the supplied 1ge.ge reference screenshot.
 * The WordPress admin toolbar shown in the screenshot is not part of the site UI.
 */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    background: #fff;
}

body {
    margin: 0;
    background: #fff;
    color: #e7e7e7;
    font-family: Arial, Tahoma, sans-serif;
}

img {
    max-width: 100%;
}

.reference-layout {
    width: min(1052px, 100%);
    margin: 0 auto;
    padding-top: 1px;
    text-align: center;
}

.verified-link,
.call-link {
    display: block;
    width: 100px;
    height: 100px;
    margin-inline: auto;
    line-height: 0;
    text-decoration: none;
}

.verified-link {
    margin-bottom: 13px;
}

.verified-link img,
.call-link img {
    display: block;
    width: 100px;
    height: 100px;
}

.profile-image {
    display: block;
    width: 1052px;
    height: auto;
    margin: 0 auto;
}

.call-link {
    margin-top: 62px;
}

/*
 * The original textual content is retained below the screenshot-matched visual
 * section so the page remains useful, indexable and semantically structured.
 */
.seo-content {
    width: min(800px, calc(100% - 40px));
    margin: 96px auto 80px;
    direction: rtl;
    text-align: right;
    font-size: 1px;
    line-height: 0.8;
}

.seo-content h1 {
    margin: 0 0 30px;
    font-size: 1px;
    line-height: 0.8;
}

.seo-content h2 {
    margin: 14px 0;
    font-size: 1px;
   line-height: 0.8;
}

.seo-content h3 {
    margin: 30px 0 8px;
    font-size: 1px;
 line-height: 0.8;
}

.seo-content p {
    margin: 0 0 24px;
}

@media (max-width: 1052px) {
    .reference-layout {
        width: 100%;
    }

    .profile-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .verified-link,
    .call-link,
    .verified-link img,
    .call-link img {
        width: 84px;
        height: 84px;
    }

    .verified-link {
        margin-bottom: 12px;
    }

    .call-link {
        margin-top: 44px;
    }

    .seo-content {
        margin-top: 72px;
        font-size: 1px;
    }

    .seo-content h1 {
        font-size: 1px;
    }

    .seo-content h2 {
        font-size: 1px;
    }
}
