<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2026 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="@dimen/safety_fre_card_height"
    android:layout_marginBottom="@dimen/safety_fre_card_gap"
    android:background="@drawable/account_row_background_rounded_all"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    android:paddingVertical="@dimen/safety_fre_card_padding_vertical"
    android:paddingHorizontal="@dimen/safety_fre_card_padding_horizontal">

  <ImageView
      android:id="@+id/card_icon"
      android:layout_width="@dimen/safety_fre_card_icon_size"
      android:layout_height="@dimen/safety_fre_card_icon_size"
      android:layout_marginEnd="@dimen/safety_fre_card_padding_horizontal"
      android:importantForAccessibility="no" />

  <LinearLayout
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:orientation="vertical">

    <TextView
        android:id="@+id/card_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="@style/TextAppearance.Headline2Thick.Primary" />

    <TextView
        android:id="@+id/card_subtitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/safety_fre_card_subtitle_margin_top"
        android:textAppearance="@style/TextAppearance.TextSmall.Secondary" />
  </LinearLayout>

  <ImageView
      android:id="@+id/card_chevron"
      android:layout_width="@dimen/safety_fre_card_chevron_size"
      android:layout_height="@dimen/safety_fre_card_chevron_size"
      android:layout_marginStart="@dimen/safety_fre_card_padding_horizontal"
      android:importantForAccessibility="no"
      android:src="@drawable/outline_chevron_right_24dp"
      app:tint="@macro/default_icon_color_secondary" />
</LinearLayout>
